summaryrefslogtreecommitdiff
path: root/print/cups-lpr/files/patch-cups.sh.in
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2001-12-04 01:10:42 +0000
committerWill Andrews <will@FreeBSD.org>2001-12-04 01:10:42 +0000
commitd32643d595be96de21ccb0e339aa1a00eb1696ef (patch)
tree3047c499617939d243386b6719d952328d6e013f /print/cups-lpr/files/patch-cups.sh.in
parentUpdate port: v2.8010.462 -> v2.8015.469 (diff)
Break out the CUPS port into two parts: cups-base (libraries only) and
cups-lpr (LP* replacement). This is done to avoid clashing LPR systems but still allow programs to compile with CUPS support. This is essential for the upcoming KDE 2.2.2 upgrade. Note that ports/print/cups is now a meta-port for the two subports, to preserve POLA. Hence, this commit starts the new life for cups packages. Bump PORTREVISION on all three accordingly. PR: 32321 Reported by: gad Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=50998
Diffstat (limited to 'print/cups-lpr/files/patch-cups.sh.in')
-rw-r--r--print/cups-lpr/files/patch-cups.sh.in42
1 files changed, 0 insertions, 42 deletions
diff --git a/print/cups-lpr/files/patch-cups.sh.in b/print/cups-lpr/files/patch-cups.sh.in
deleted file mode 100644
index 66c8738ba614..000000000000
--- a/print/cups-lpr/files/patch-cups.sh.in
+++ /dev/null
@@ -1,42 +0,0 @@
---- cups.sh.in.orig Fri Nov 2 15:43:10 2001
-+++ cups.sh.in Sat Nov 17 12:25:49 2001
-@@ -63,6 +63,10 @@
- IS_ON=:
- ;;
-
-+ FreeBSD*)
-+ IS_ON=/usr/bin/true
-+ ;;
-+
- *)
- IS_ON=/bin/true
- ;;
-@@ -104,7 +108,7 @@
- OSF1*)
- pid=`ps -e | awk '{if (match($5, ".*/cupsd$") || $5 == "cupsd") print $1}'`
- ;;
-- Linux* | NetBSD* | Darwin*)
-+ Linux* | NetBSD* | Darwin* | FreeBSD*)
- pid=`ps ax | awk '{if (match($5, ".*/cupsd$") || $5 == "cupsd") print $1}'`
- ;;
- *)
-@@ -126,7 +130,8 @@
- exec_prefix=@exec_prefix@
- @sbindir@/cupsd
- fi
-- $ECHO "cups: scheduler ${1}ed."
-+# $ECHO "cups: scheduler ${1}ed."
-+ echo -n "cupsd "
- else
- $ECHO "cups: scheduler stopped."
- fi
-@@ -135,7 +140,8 @@
- stop)
- if test "$pid" != ""; then
- kill $pid
-- $ECHO "cups: scheduler stopped."
-+# $ECHO "cups: scheduler stopped."
-+ echo -n "cupsd "
- fi
- ;;
-