diff options
author | cs <cs@FreeBSD.org> | 2014-06-06 06:15:45 +0800 |
---|---|---|
committer | cs <cs@FreeBSD.org> | 2014-06-06 06:15:45 +0800 |
commit | dae4815b3f2c86000a5188d106472fbac99f684a (patch) | |
tree | 403eff9e248eda4dac82435f76a820ec24527625 /print | |
parent | ce2f8accdffd530056a24ed7cdac649466c5aa49 (diff) | |
download | freebsd-ports-gnome-dae4815b3f2c86000a5188d106472fbac99f684a.tar.gz freebsd-ports-gnome-dae4815b3f2c86000a5188d106472fbac99f684a.tar.zst freebsd-ports-gnome-dae4815b3f2c86000a5188d106472fbac99f684a.zip |
- Support Staging
- Add LICENSE
PR: 190503
Submitted by: kheuer@gwdg.de (maintainer)
Diffstat (limited to 'print')
-rw-r--r-- | print/rprint/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/print/rprint/Makefile b/print/rprint/Makefile index 3ab746f38f8c..60d489edd3ab 100644 --- a/print/rprint/Makefile +++ b/print/rprint/Makefile @@ -10,12 +10,16 @@ MASTER_SITES= ftp://gwdu111.gwdg.de/pub/FreeBSD/misc/ \ MAINTAINER= kheuer@gwdg.de COMMENT= Remote printing utility using a raw bidirectional tcp connection -MAN1= rprint.1 +LICENSE= BSD4CLAUSE + MANCOMPRESSED= yes -PLIST_FILES= bin/rprint +PLIST_FILES= bin/rprint man/man1/rprint.1.gz -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s/^(CC|CFLAGS).+//g" ${WRKSRC}/Makefile +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/rprint ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/rprint.1.gz ${STAGEDIR}${PREFIX}/man/man1 + .include <bsd.port.mk> |