summaryrefslogtreecommitdiff
path: root/sysutils/LPRng/files
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/LPRng/files')
-rw-r--r--sysutils/LPRng/files/patch-ah24
-rw-r--r--sysutils/LPRng/files/patch-ai33
-rw-r--r--sysutils/LPRng/files/patch-aj33
3 files changed, 0 insertions, 90 deletions
diff --git a/sysutils/LPRng/files/patch-ah b/sysutils/LPRng/files/patch-ah
deleted file mode 100644
index 275602e99763..000000000000
--- a/sysutils/LPRng/files/patch-ah
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/common/vars.c.orig Thu Dec 28 05:06:11 2000
-+++ src/common/vars.c Tue Jul 3 19:44:29 2001
-@@ -62,10 +62,10 @@
- #error Missing REQUIRE_CONFIGFILES definition
- #endif
- #if !defined(FILTER_PATH)
--#define FILTER_PATH "/bin:/usr/bin:/usr/contrib/bin:/usr/local/bin:/usr/ucb:/usr/sbin:/usr/etc:/etc"
-+#define FILTER_PATH "/bin:/usr/bin:/usr/libexec:/usr/local/libexec:/usr/sbin:/var/spool/bin"
- #endif
- #if !defined(LD_LIBRARY_PATH)
--#define LD_LIBRARY_PATH "/lib:/usr/lib:/usr/5lib:/usr/ucblib"
-+#define LD_LIBRARY_PATH "/lib:/usr/lib:/usr/local/lib"
- #endif
- #if !defined(LOCKFILE)
- #error Missing LOCKFILE definition
-@@ -242,7 +242,7 @@
- /* remote server principal for server to server forwarding */
- { "kerberos_forward_principal", 0, STRING_K, &Kerberos_forward_principal_DYN,0,0},
- /* keytab file location for kerberos, used by server */
--{ "kerberos_keytab", 0, STRING_K, &Kerberos_keytab_DYN,0,0,"=/etc/lpd.keytab"},
-+{ "kerberos_keytab", 0, STRING_K, &Kerberos_keytab_DYN,0,0,"=/usr/local/etc/lpd.keytab:/etc/lpd.keytab"},
- /* key lifetime for kerberos, used by server */
- { "kerberos_life", 0, STRING_K, &Kerberos_life_DYN,0,0},
- /* key renewal time for kerberos, used by server */
diff --git a/sysutils/LPRng/files/patch-ai b/sysutils/LPRng/files/patch-ai
deleted file mode 100644
index 79e530c570b8..000000000000
--- a/sysutils/LPRng/files/patch-ai
+++ /dev/null
@@ -1,33 +0,0 @@
---- man/Makefile.in.orig Sun Mar 31 21:50:56 2002
-+++ man/Makefile.in Sun Apr 28 16:56:03 2002
-@@ -18,7 +18,7 @@
- INSTALL=@INSTALL@
-
- # change MANEXT to .gz or .Z if you use compressed manpages.
--MANEXT =
-+MANEXT =.gz
-
- ## fix up prefix to be a make variable
- prefix = @prefix@
-@@ -111,8 +111,11 @@
- ${SRC}/mkinstalldirs $(DESTDIR)$(MAN)/man$${suffix}; \
- fi; \
- for i in *.$$suffix; do \
-- echo $(INSTALL) -m 644 $$i $(DESTDIR)$(MAN)/man$$suffix/`basename $$i`$(MANEXT); \
-- $(INSTALL) -m 644 $$i $(DESTDIR)$(MAN)/man$$suffix/`basename $$i`$(MANEXT); \
-+ echo $(COMPRESS) $$i ; \
-+ $(COMPRESS) < $$i >_ ; \
-+ echo $(INSTALL) -m 644 _ $(DESTDIR)$(MAN)/man$$suffix/`basename $$i`$(MANEXT); \
-+ $(INSTALL) -m 644 _ $(DESTDIR)$(MAN)/man$$suffix/`basename $$i`$(MANEXT); \
-+ rm _ ; \
- done; \
- fi; \
- done;
-@@ -126,7 +129,6 @@
- done; \
- fi; \
- done;
--
- realclean mostlyclean distclean:: clean
-
- clean::
diff --git a/sysutils/LPRng/files/patch-aj b/sysutils/LPRng/files/patch-aj
deleted file mode 100644
index 8a75d5aaf759..000000000000
--- a/sysutils/LPRng/files/patch-aj
+++ /dev/null
@@ -1,33 +0,0 @@
---- postinstall.freebsd.sh.orig Mon Jun 17 22:10:17 2002
-+++ postinstall.freebsd.sh Fri Mar 7 15:54:41 2003
-@@ -56,7 +56,7 @@
- cp lpd.conf ${hold}/lpd.conf.sample
- cp printcap ${hold}/printcap.sample
- if [ "$INIT" != no ] ; then
-- cp init.freebsd ${hold}/lprng.sh
-+ cp init.freebsd ${hold}/rc.d/lprng.sh
- fi
- elif [ "X$MAKEINSTALL" = XYES ] ; then
- # we have the port pre-install operation
-@@ -81,8 +81,8 @@
- if [ -f /etc/rc.conf ] ; then
- perl -spi.bak -e 's/^lpd_enable/#lpd_enable/;' ${DESTDIR}/etc/rc.conf
- fi
-- cp init.freebsd ${hold}/lprng.sh
-- init=${DESTDIR}/usr/local/etc/rc.d/lprng.sh
-+ cp init.freebsd ${hold}/rc.d/lprng.sh
-+ init=${DESTDIR}${PREFIX}/etc/rc.d/lprng.sh
- echo "Setting up init script $init using init.freebsd"
- if [ ! -d `dirname $init` ] ; then mkdir -p `dirname $init ` ; fi;
- rm -f $init
-@@ -107,8 +107,8 @@
- fix ${hold}/lpd.conf "${LPD_CONF_PATH}"
- fix ${hold}/printcap "${PRINTCAP_PATH}"
- if [ "$INIT" != no ] ; then
-- init=/usr/local/etc/rc.d/lprng.sh
-- cp ${hold}/lprng.sh $init;
-+ init=${DESTDIR}${PREFIX}/etc/rc.d/lprng.sh
-+ cp ${hold}/rc.d/lprng.sh $init;
- chmod 755 $init;
- if [ -f /etc/rc.conf ] ; then
- perl -spi.bak -e 's/^lpd_enable/#lpd_enable/;' /etc/rc.conf