diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-28 12:21:56 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-28 12:21:56 +0000 |
commit | facdfd83a7cf9e939bb7d44a21db29814295860f (patch) | |
tree | 62ad1a19ecb6dad38fc40f6e8cb09e8bbe977467 /print | |
parent | 8b854de6a494f1d65f359320bd917b6b29acc2f2 (diff) | |
download | ports-facdfd83a7cf9e939bb7d44a21db29814295860f.tar.gz ports-facdfd83a7cf9e939bb7d44a21db29814295860f.zip |
- Support staging
- New LIB_DEPENDS definition
Notes
Notes:
svn path=/head/; revision=346493
Diffstat (limited to 'print')
-rw-r--r-- | print/c2ps/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/print/c2ps/Makefile b/print/c2ps/Makefile index 0ea441a5f1b2..3ccd8de62050 100644 --- a/print/c2ps/Makefile +++ b/print/c2ps/Makefile @@ -10,16 +10,14 @@ MASTER_SITES= http://www.cs.technion.ac.il/users/c2ps/ MAINTAINER= hrs@FreeBSD.org COMMENT= A PostScript pretty-printer for C source -LIB_DEPENDS= paper:${PORTSDIR}/print/libpaper +LIB_DEPENDS= libpaper.so:${PORTSDIR}/print/libpaper CPPFLAGS+= -I${LOCALBASE}/include -PLIST_FILES= bin/c2ps -MAN1= c2ps.1 +PLIST_FILES= bin/c2ps man/man1/c2ps.1.gz -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/c2ps ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/c2ps.1 ${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/c2ps ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/c2ps.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include <bsd.port.mk> |