diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-11-13 16:24:44 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-11-13 16:24:44 +0000 |
commit | d60a3f516256e8b634ae4db06ba4fdfe1246f8da (patch) | |
tree | 55006b3a08e5bb6412faafb74b6aad30b1f51e24 /net-print/cups | |
parent | New package (diff) | |
download | historical-d60a3f516256e8b634ae4db06ba4fdfe1246f8da.tar.gz historical-d60a3f516256e8b634ae4db06ba4fdfe1246f8da.tar.bz2 historical-d60a3f516256e8b634ae4db06ba4fdfe1246f8da.zip |
New version. Now links against openslp if "slp" is in USE
Diffstat (limited to 'net-print/cups')
-rw-r--r-- | net-print/cups/cups-1.1.11-r6.ebuild | 96 | ||||
-rw-r--r-- | net-print/cups/files/digest-cups-1.1.11-r6 | 1 |
2 files changed, 97 insertions, 0 deletions
diff --git a/net-print/cups/cups-1.1.11-r6.ebuild b/net-print/cups/cups-1.1.11-r6.ebuild new file mode 100644 index 000000000000..febdd2eb83ff --- /dev/null +++ b/net-print/cups/cups-1.1.11-r6.ebuild @@ -0,0 +1,96 @@ +# 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.1 2001/11/13 16:24:44 achim 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 \ + 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/files/digest-cups-1.1.11-r6 b/net-print/cups/files/digest-cups-1.1.11-r6 new file mode 100644 index 000000000000..d59ae74798d0 --- /dev/null +++ b/net-print/cups/files/digest-cups-1.1.11-r6 @@ -0,0 +1 @@ +MD5 423f19c03c63d9a962f6e6067c097dfe cups-1.1.11-source.tar.bz2 5398528 |