6530f2aab8
code, made the PAPERSIZE check at load time, removed automatic stripping of the binary files.
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.36 2007/01/03 21:09:55 rillig Exp $
|
|
|
|
DISTNAME= psutils-p17
|
|
PKGNAME= psutils-1.17
|
|
PKGREVISION= 2
|
|
CATEGORIES= print
|
|
MASTER_SITES= ftp://ftp.dcs.ed.ac.uk/pub/ajcd/
|
|
|
|
MAINTAINER= dillo@NetBSD.org
|
|
HOMEPAGE= http://www.go.dlr.de:8081/pdinfo_dv/psutils.html
|
|
COMMENT= Utilities for manipulating PostScript documents
|
|
|
|
WRKSRC= ${WRKDIR}/psutils
|
|
USE_TOOLS+= perl:run
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
BUILD_DEFS+= PAPERSIZE
|
|
|
|
.if !defined(PAPERSIZE)
|
|
PKG_FAIL_REASON+= "PAPERSIZE must be defined by the pkgsrc user."
|
|
.else
|
|
. if ${PAPERSIZE} != "A4" && ${PAPERSIZE} != "Letter"
|
|
PKG_FAIL_REASON+= "Invalid PAPERSIZE (${PAPERSIZE}). Choose one of A4 or Letter."
|
|
. endif
|
|
.endif
|
|
|
|
MAKE_ENV+= PERL5=${PERL5:Q}
|
|
MAKE_FLAGS+= PAPER=`${ECHO} ${PAPERSIZE} | ${TR} '[A-Z]' '[a-z]'`
|
|
MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMANDIR}/man1
|
|
MAKE_FILE= Makefile.unix
|
|
|
|
EGDIR= ${PREFIX}/share/examples/psutils
|
|
CONF_FILES= ${EGDIR}/psutils.cfg ${PKG_SYSCONFDIR}/psutils.cfg
|
|
|
|
SUBST_CLASSES+= psu
|
|
SUBST_STAGE.psu= pre-configure
|
|
SUBST_MESSAGE.psu= Adjusting the installation prefix.
|
|
SUBST_FILES.psu= psutil.c
|
|
SUBST_SED.psu= -e "s|@prefix@|${PREFIX}|g"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
low=`${ECHO} ${PAPERSIZE} | ${TR} '[A-Z]' '[a-z]'` \
|
|
&& ${ECHO} "PAPERSIZE=$$low" > ${EGDIR}/psutils.cfg
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|