mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
54bb427e44
- Add LICENSE PR: 190503 Submitted by: kheuer@gwdg.de (maintainer)
26 lines
629 B
Makefile
26 lines
629 B
Makefile
# Created by: Konrad Heuer
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rprint
|
|
PORTVERSION= 3.2
|
|
CATEGORIES= print
|
|
MASTER_SITES= ftp://gwdu111.gwdg.de/pub/FreeBSD/misc/ \
|
|
ftp://gwdu112.gwdg.de/pub/FreeBSD/misc/
|
|
|
|
MAINTAINER= kheuer@gwdg.de
|
|
COMMENT= Remote printing utility using a raw bidirectional tcp connection
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
|
|
MANCOMPRESSED= yes
|
|
PLIST_FILES= bin/rprint man/man1/rprint.1.gz
|
|
|
|
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>
|