diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-01-23 04:30:20 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-01-23 04:30:20 +0000 |
commit | 89b60a7cd77748bdda5fdcddda55066f6a211f26 (patch) | |
tree | 543a382ed7feff5947e7ce5ee8bed3241bd66d41 /net-print | |
parent | Hmmm, old ebuilds are still in the tree since the big (diff) | |
download | gentoo-2-89b60a7cd77748bdda5fdcddda55066f6a211f26.tar.gz gentoo-2-89b60a7cd77748bdda5fdcddda55066f6a211f26.tar.bz2 gentoo-2-89b60a7cd77748bdda5fdcddda55066f6a211f26.zip |
old versions deleted. cleaning up from the cvs.gentoo.org meltdown
recovery.
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/cups/cups-1.1.10-r6.ebuild | 93 | ||||
-rw-r--r-- | net-print/cups/cups-1.1.10.ebuild | 93 | ||||
-rw-r--r-- | net-print/cups/cups-1.1.11-r6.ebuild | 98 | ||||
-rw-r--r-- | net-print/cups/files/cupsd.rc5 | 39 | ||||
-rw-r--r-- | net-print/cups/files/digest-cups-1.1.10 | 1 | ||||
-rw-r--r-- | net-print/cups/files/digest-cups-1.1.10-r6 | 1 | ||||
-rw-r--r-- | net-print/cups/files/digest-cups-1.1.11-r6 | 1 |
7 files changed, 0 insertions, 326 deletions
diff --git a/net-print/cups/cups-1.1.10-r6.ebuild b/net-print/cups/cups-1.1.10-r6.ebuild deleted file mode 100644 index 7c67336b96ef..000000000000 --- a/net-print/cups/cups-1.1.10-r6.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer System Team <system@gentoo.org> -# Author Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-print/cups/cups-1.1.10-r6.ebuild,v 1.2 2001/10/11 07:34:32 woodchip Exp $ - -DESCRIPTION="The Common Unix Printing System" -HOMEPAGE="http://www.cups.org" - -S=${WORKDIR}/${P} -SRC_URI="ftp://ftp.easysw.com/pub/cups/${PV}/${P}-1-source.tar.bz2" -PROVIDE="virtual/lpr" - -DEPEND="virtual/glibc - pam? ( >=sys-libs/pam-0.75 ) - ssl? ( >=dev-libs/openssl-0.9.6b ) - >=media-libs/libpng-1.0.12 - >=media-libs/tiff-3.5.5 - >=media-libs/jpeg-6b - !net-print/LPRng" - -src_unpack() { - - unpack ${A} ; cd ${S} - # make sure libcupsimage gets linked with libjpeg - patch -p0 < ${FILESDIR}/configure-jpeg-buildfix.diff - assert "bad patchfile" -} - -src_compile() { - - local myconf - use pam || myconf="${myconf} --disable-pam" - use ssl || myconf="${myconf} --disable-ssl" - - ./configure --host=${CHOST} ${myconf} --with-cups-user=lp --with-cups-group=lp - assert "bad configure" - - make || die "compile problem" -} - -src_install() { - - # set these up now or make install will.. and that aint pretty! - diropts -m 755 ; dodir /var/spool - diropts -m 755 ; dodir /var/log/cups - diropts -m 755 ; dodir /etc/cups - - # lets do it this way - make \ - LOCALEDIR=${D}/usr/share/locale \ - DOCDIR=${D}/usr/share/doc/${PF} \ - REQUESTS=${D}/var/spool/cups \ - SERVERBIN=${D}/usr/lib/cups \ - DATADIR=${D}/usr/share/cups \ - INCLUDEDIR=${D}/usr/include \ - AMANDIR=${D}/usr/share/man \ - MANDIR=${D}/usr/share/man \ - SERVERROOT=${D}/etc/cups \ - LOGDIR=${D}/var/log/cups \ - SBINDIR=${D}/usr/sbin \ - PAMDIR=${D}/etc/pam.d \ - EXEC_PREFIX=${D}/usr \ - LIBDIR=${D}/usr/lib \ - BINDIR=${D}/usr/bin \ - INITDIR=${D}/etc \ - PREFIX=${D} \ - install || die "install problem" - - # add a few more docs; pdfs and html get inserted for us in DOCDIR above :) - dodoc {CHANGES,CREDITS,ENCRYPTION,LICENSE,README}.txt - insinto /usr/share/doc/${PF} ; doins LICENSE.html - - # cleanups and fixups - rm -rf ${D}/etc/init.d - rm -rf ${D}/etc/pam.d - rm -rf ${D}/etc/rc* - rm -rf ${D}/usr/share/man/cat* - dosed "s:#DocumentRoot /usr/share/doc/cups:DocumentRoot /usr/share/doc/${PF}:" /etc/cups/cupsd.conf - dosed "s:#SystemGroup sys:SystemGroup lp:" /etc/cups/cupsd.conf - dosed "s:#User lp:User lp:" /etc/cups/cupsd.conf - dosed "s:#Group sys:Group lp:" /etc/cups/cupsd.conf - - # sanity checks - chown lp.root ${D}/usr/bin/lppasswd ; chmod 4755 ${D}/usr/bin/lppasswd - chown lp.root ${D}/etc/cups/certs ; chmod 711 ${D}/etc/cups/certs - chown lp.root ${D}/var/spool/cups ; chmod 0700 ${D}/var/spool/cups - chown lp.root ${D}/var/spool/cups/tmp ; chmod 01700 ${D}/var/spool/cups/tmp - - # gentoo config stuff - insinto /etc/pam.d ; newins ${FILESDIR}/cups.pam cups - exeinto /etc/init.d ; newexe ${FILESDIR}/cupsd.rc6 cupsd -} diff --git a/net-print/cups/cups-1.1.10.ebuild b/net-print/cups/cups-1.1.10.ebuild deleted file mode 100644 index fe5b923eae89..000000000000 --- a/net-print/cups/cups-1.1.10.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer System Team <system@gentoo.org> -# Author Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-print/cups/cups-1.1.10.ebuild,v 1.2 2001/10/11 07:34:32 woodchip Exp $ - -DESCRIPTION="The Common Unix Printing System" -HOMEPAGE="http://www.cups.org" - -S=${WORKDIR}/${P} -SRC_URI="ftp://ftp.easysw.com/pub/cups/${PV}/${P}-1-source.tar.bz2" -PROVIDE="virtual/lpr" - -DEPEND="virtual/glibc - pam? ( >=sys-libs/pam-0.75 ) - ssl? ( >=dev-libs/openssl-0.9.6b ) - >=media-libs/libpng-1.0.12 - >=media-libs/tiff-3.5.5 - >=media-libs/jpeg-6b - !net-print/LPRng" - -src_unpack() { - - unpack ${A} ; cd ${S} - # make sure libcupsimage gets linked with libjpeg - patch -p0 < ${FILESDIR}/configure-jpeg-buildfix.diff - assert "bad patchfile" -} - -src_compile() { - - local myconf - use pam || myconf="${myconf} --disable-pam" - use ssl || myconf="${myconf} --disable-ssl" - - ./configure --host=${CHOST} ${myconf} --with-cups-user=lp --with-cups-group=lp - assert "bad configure" - - make || die "compile problem" -} - -src_install() { - - # set these up now or make install will.. and that aint pretty! - diropts -m 755 ; dodir /var/spool - diropts -m 755 ; dodir /var/log/cups - diropts -m 755 ; dodir /etc/cups - - # lets do it this way - make \ - LOCALEDIR=${D}/usr/share/locale \ - DOCDIR=${D}/usr/share/doc/${PF} \ - REQUESTS=${D}/var/spool/cups \ - SERVERBIN=${D}/usr/lib/cups \ - DATADIR=${D}/usr/share/cups \ - INCLUDEDIR=${D}/usr/include \ - AMANDIR=${D}/usr/share/man \ - MANDIR=${D}/usr/share/man \ - SERVERROOT=${D}/etc/cups \ - LOGDIR=${D}/var/log/cups \ - SBINDIR=${D}/usr/sbin \ - PAMDIR=${D}/etc/pam.d \ - EXEC_PREFIX=${D}/usr \ - LIBDIR=${D}/usr/lib \ - BINDIR=${D}/usr/bin \ - INITDIR=${D}/etc \ - PREFIX=${D} \ - install || die "install problem" - - # add a few more docs; pdfs and html get inserted for us in DOCDIR above :) - dodoc {CHANGES,CREDITS,ENCRYPTION,LICENSE,README}.txt - insinto /usr/share/doc/${PF} ; doins LICENSE.html - - # cleanups and fixups - rm -rf ${D}/etc/init.d - rm -rf ${D}/etc/pam.d - rm -rf ${D}/etc/rc* - rm -rf ${D}/usr/share/man/cat* - dosed "s:#DocumentRoot /usr/share/doc/cups:DocumentRoot /usr/share/doc/${PF}:" /etc/cups/cupsd.conf - dosed "s:#SystemGroup sys:SystemGroup lp:" /etc/cups/cupsd.conf - dosed "s:#User lp:User lp:" /etc/cups/cupsd.conf - dosed "s:#Group sys:Group lp:" /etc/cups/cupsd.conf - - # sanity checks - chown lp.root ${D}/usr/bin/lppasswd ; chmod 4755 ${D}/usr/bin/lppasswd - chown lp.root ${D}/etc/cups/certs ; chmod 711 ${D}/etc/cups/certs - chown lp.root ${D}/var/spool/cups ; chmod 0700 ${D}/var/spool/cups - chown lp.root ${D}/var/spool/cups/tmp ; chmod 01700 ${D}/var/spool/cups/tmp - - # gentoo config stuff - insinto /etc/pam.d ; newins ${FILESDIR}/cups.pam cups - exeinto /etc/rc.d/init.d ; newexe ${FILESDIR}/cupsd.rc5 cupsd -} diff --git a/net-print/cups/cups-1.1.11-r6.ebuild b/net-print/cups/cups-1.1.11-r6.ebuild deleted file mode 100644 index 4e0bc1234644..000000000000 --- a/net-print/cups/cups-1.1.11-r6.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer System Team <system@gentoo.org> -# Author Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-print/cups/cups-1.1.11-r6.ebuild,v 1.2 2001/12/12 17:01:53 gbevin Exp $ - -DESCRIPTION="The Common Unix Printing System" -HOMEPAGE="http://www.cups.org" - -S=${WORKDIR}/${P} -SRC_URI="ftp://ftp.easysw.com/pub/cups/${PV}/${P}-source.tar.bz2" -PROVIDE="virtual/lpr" - -DEPEND="virtual/glibc - pam? ( >=sys-libs/pam-0.75 ) - ssl? ( >=dev-libs/openssl-0.9.6b ) - slp? ( >=net-libs/openslp-1.0.4 ) - >=media-libs/libpng-1.0.12 - >=media-libs/tiff-3.5.5 - >=media-libs/jpeg-6b - !net-print/LPRng" - -src_unpack() { - - unpack ${A} ; cd ${S} - # make sure libcupsimage gets linked with libjpeg - patch -p0 < ${FILESDIR}/configure-jpeg-buildfix.diff - assert "bad patchfile" - autoconf -} - -src_compile() { - - local myconf - use pam || myconf="${myconf} --disable-pam" - use ssl || myconf="${myconf} --disable-ssl" - use slp || myconf="${myconf} --disable-slp" - - ./configure --host=${CHOST} ${myconf} --with-cups-user=lp --with-cups-group=lp - assert "bad configure" - - make || die "compile problem" -} - -src_install() { - - # set these up now or make install will.. and that aint pretty! - diropts -m 755 ; dodir /var/spool - diropts -m 755 ; dodir /var/log/cups - diropts -m 755 ; dodir /etc/cups - - # lets do it this way - make \ - LOCALEDIR=${D}/usr/share/locale \ - DOCDIR=${D}/usr/share/doc/${PF} \ - REQUESTS=${D}/var/spool/cups \ - SERVERBIN=${D}/usr/lib/cups \ - DATADIR=${D}/usr/share/cups \ - INCLUDEDIR=${D}/usr/include \ - AMANDIR=${D}/usr/share/man \ - MANDIR=${D}/usr/share/man \ - PMANDIR=${D}/usr/share/man \ - SERVERROOT=${D}/etc/cups \ - LOGDIR=${D}/var/log/cups \ - SBINDIR=${D}/usr/sbin \ - PAMDIR=${D}/etc/pam.d \ - EXEC_PREFIX=${D}/usr \ - LIBDIR=${D}/usr/lib \ - BINDIR=${D}/usr/bin \ - bindir=${D}/usr/bin \ - INITDIR=${D}/etc \ - PREFIX=${D} \ - install || die "install problem" - - # add a few more docs; pdfs and html get inserted for us in DOCDIR above :) - dodoc {CHANGES,CREDITS,ENCRYPTION,LICENSE,README}.txt - insinto /usr/share/doc/${PF} ; doins LICENSE.html - - # cleanups and fixups - rm -rf ${D}/etc/init.d - rm -rf ${D}/etc/pam.d - rm -rf ${D}/etc/rc* - rm -rf ${D}/usr/share/man/cat* - dosed "s:#DocumentRoot /usr/share/doc/cups:DocumentRoot /usr/share/doc/${PF}:" /etc/cups/cupsd.conf - dosed "s:#SystemGroup sys:SystemGroup lp:" /etc/cups/cupsd.conf - dosed "s:#User lp:User lp:" /etc/cups/cupsd.conf - dosed "s:#Group sys:Group lp:" /etc/cups/cupsd.conf - - # sanity checks - chown lp.root ${D}/usr/bin/lppasswd ; chmod 4755 ${D}/usr/bin/lppasswd - chown lp.root ${D}/etc/cups/certs ; chmod 711 ${D}/etc/cups/certs - chown lp.root ${D}/var/spool/cups ; chmod 0700 ${D}/var/spool/cups - chown lp.root ${D}/var/spool/cups/tmp ; chmod 01700 ${D}/var/spool/cups/tmp - - # gentoo config stuff - insinto /etc/pam.d ; newins ${FILESDIR}/cups.pam cups - exeinto /etc/init.d ; newexe ${FILESDIR}/cupsd.rc6 cupsd -} diff --git a/net-print/cups/files/cupsd.rc5 b/net-print/cups/files/cupsd.rc5 deleted file mode 100644 index 4a46bf7b637c..000000000000 --- a/net-print/cups/files/cupsd.rc5 +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -#RCUPDATE:2 3 4:75:This line is required for script management -# - -. /etc/rc.d/config/functions - -SERVICE="Common Unix Printing System" -EXE="/usr/sbin/cupsd" -opts="start stop" - - -# Start or stop the CUPS server based upon the first argument to the script. - -start() { - pid=`ps ax | awk '{print $1,$5}' | grep cupsd | awk '{print $1}'` - if test "$pid" == ""; then - ebegin "Starting $SERVICE..." - start-stop-daemon --start --quiet --exec $EXE - eend $? "Started $SERVICE." "Error Starting $SERVICE." - fi -} - -stop() { - pid=`ps ax | awk '{print $1,$5}' | grep cupsd | awk '{print $1}'` - if test "$pid" != ""; then - ebegin "Stopping $SERVICE..." - start-stop-daemon --stop --quiet --exec $EXE - eend $? "Stopping $SERVICE. $pid" "Error Stopping $SERVICE." - - fi -} - -restart() { - stop - start -} - -doservice ${@} - diff --git a/net-print/cups/files/digest-cups-1.1.10 b/net-print/cups/files/digest-cups-1.1.10 deleted file mode 100644 index 83a6aceadb70..000000000000 --- a/net-print/cups/files/digest-cups-1.1.10 +++ /dev/null @@ -1 +0,0 @@ -MD5 e5f2b25fa2caa5f26f21432ec1e9eaac cups-1.1.10-1-source.tar.bz2 5373952 diff --git a/net-print/cups/files/digest-cups-1.1.10-r6 b/net-print/cups/files/digest-cups-1.1.10-r6 deleted file mode 100644 index 83a6aceadb70..000000000000 --- a/net-print/cups/files/digest-cups-1.1.10-r6 +++ /dev/null @@ -1 +0,0 @@ -MD5 e5f2b25fa2caa5f26f21432ec1e9eaac cups-1.1.10-1-source.tar.bz2 5373952 diff --git a/net-print/cups/files/digest-cups-1.1.11-r6 b/net-print/cups/files/digest-cups-1.1.11-r6 deleted file mode 100644 index d59ae74798d0..000000000000 --- a/net-print/cups/files/digest-cups-1.1.11-r6 +++ /dev/null @@ -1 +0,0 @@ -MD5 423f19c03c63d9a962f6e6067c097dfe cups-1.1.11-source.tar.bz2 5398528 |