mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
35 lines
653 B
Makefile
35 lines
653 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: qgfe
|
|
# Date created: Aug 30, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qgfe
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.xm1math.net/qgfe/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Gnuplot Front End
|
|
|
|
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
|
|
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
|
|
|
|
USE_BZIP2= yes
|
|
USE_QT_VER= 3
|
|
MAKE_ENV= QTDIR=${QT_PREFIX} \
|
|
MOC=${MOC}
|
|
|
|
PLIST_FILES= bin/qgfe
|
|
|
|
pre-build:
|
|
@cd ${WRKSRC}; qmake -spec ${LOCALBASE}/share/qt/mkspecs/freebsd-g++ ${PORTNAME}.pro
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/qgfe ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|