diff options
author | taoka <taoka@FreeBSD.org> | 1999-05-11 09:59:51 +0800 |
---|---|---|
committer | taoka <taoka@FreeBSD.org> | 1999-05-11 09:59:51 +0800 |
commit | 19f380b9da9c59a9f2c2d207b90b7e77ebf89667 (patch) | |
tree | f056fc3f2b1b1ded40f8d4bf6aa3e6e15d664d19 /print/rlpr/Makefile | |
parent | 513ffa460d21c210c30f5344effdca9391c4ea27 (diff) | |
download | freebsd-ports-gnome-19f380b9da9c59a9f2c2d207b90b7e77ebf89667.tar.gz freebsd-ports-gnome-19f380b9da9c59a9f2c2d207b90b7e77ebf89667.tar.zst freebsd-ports-gnome-19f380b9da9c59a9f2c2d207b90b7e77ebf89667.zip |
Send print jobs to lpd servers anywhere on a network.
PR: 11072
Submiited by: Mikhail Teterin <mi@aldan.algebra.com>
Diffstat (limited to 'print/rlpr/Makefile')
-rw-r--r-- | print/rlpr/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/print/rlpr/Makefile b/print/rlpr/Makefile new file mode 100644 index 000000000000..0a857b282c2c --- /dev/null +++ b/print/rlpr/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: rlpr +# Version required: 2.0 +# Date created: 11 April 1999 +# Whom: Mikhail Teterin +# +# $Id$ + +DISTNAME= rlpr-2.00 +CATEGORIES= print net +MASTER_SITES= ftp://sherilyn.ne.mediaone.net/pub/ + +MAINTAINER= mi@aldan.algebra.com + +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${PREFIX}/include" LDFLAGS="-L${PREFIX}/lib -lintl" +CONFIGURE_ARGS= --with-catgets + +RLPRRC= ${WRKSRC}/src/rlprrc.h + +post-patch: + @echo "Replacing references to /etc/rlprrc to ${PREFIX}/etc/rlprrc" + @test -e ${RLPRRC}.orig || ${MV} ${RLPRRC} ${RLPRRC}.orig && \ + ${SED} s%/etc/%${PREFIX}/etc/% ${RLPRRC}.orig > ${RLPRRC} + @for man in `${GREP} -l /etc/rlprrc ${WRKSRC}/man/*.[0-9n]`; do \ + if test -e $$man.orig; then continue; fi; \ + ${MV} $$man $$man.orig ; \ + ${SED} s%/etc/rlprrc%${PREFIX}/etc/rlprrc%g < $$man.orig > \ + $$man ; \ + done + +post-install: + @echo "Making the installed binaries suid,\ + for the remote lpds to talk to them" + chmod u+s ${PREFIX}/bin/rlpq ${PREFIX}/bin/rlpr ${PREFIX}/bin/rlprm + +MAN1= rlpr.1 rlpq.1 rlprm.1 +MAN5= rlprrc.5 +MAN8= rlprd.8 + +.include <bsd.port.mk> |