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)
33 lines
804 B
Makefile
33 lines
804 B
Makefile
# New ports collection makefile for: kpdftool
|
|
# Date created: 04 May 2006
|
|
# Whom: Yuan, Jue <yuanjue@yuanjue.net>
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kpdftool
|
|
PORTVERSION= 0.22
|
|
PORTREVISION= 2
|
|
CATEGORIES= print kde
|
|
MASTER_SITES= http://www.yuanjue.net/download/
|
|
|
|
MAINTAINER= yuanjue@yuanjue.net
|
|
COMMENT= Tool to ease your PDF related work
|
|
|
|
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
|
|
RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick
|
|
|
|
USE_GMAKE= yes
|
|
USE_QT_VER= 3
|
|
CONFIGURE_ENV= QMAKESPEC=${LOCALBASE}/share/qt/mkspecs/freebsd-g++
|
|
MAKE_ARGS+= QTDIR=${QT_PREFIX}
|
|
|
|
do-configure:
|
|
cd ${WRKSRC}; \
|
|
${LOCALBASE}/bin/qmake -spec ${LOCALBASE}/share/qt/mkspecs/freebsd-g++ ${PORTNAME}.pro;
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
PLIST_FILES= bin/kpdftool
|
|
|
|
.include <bsd.port.mk>
|