diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-07-25 22:53:57 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-07-25 22:53:57 +0000 |
commit | f1f887cf2ce70f306c2d496934ffbb0c83216e91 (patch) | |
tree | a5be4682466516e0deaac2eaa65a20244166f873 /net-print | |
parent | small update (diff) | |
download | historical-f1f887cf2ce70f306c2d496934ffbb0c83216e91.tar.gz historical-f1f887cf2ce70f306c2d496934ffbb0c83216e91.tar.bz2 historical-f1f887cf2ce70f306c2d496934ffbb0c83216e91.zip |
new version
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/gtklp/ChangeLog | 6 | ||||
-rw-r--r-- | net-print/gtklp/files/digest-gtklp-0.9k | 1 | ||||
-rw-r--r-- | net-print/gtklp/gtklp-0.9k.ebuild | 41 |
3 files changed, 47 insertions, 1 deletions
diff --git a/net-print/gtklp/ChangeLog b/net-print/gtklp/ChangeLog index 1c6afc6c13aa..737b902fb0a7 100644 --- a/net-print/gtklp/ChangeLog +++ b/net-print/gtklp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-print/gtklp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-print/gtklp/ChangeLog,v 1.2 2002/07/14 20:41:22 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/gtklp/ChangeLog,v 1.3 2002/07/25 22:53:34 spider Exp $ + +*gtklp-0.9k (25 Jul 2002) + 25 Jul 2002; Spider <spider@gentoo.org> gtklp-0.9k.ebuild: + thanks to Luca Barbato <lu_zero@psxfanatics.com> for a new version ebuild *gtklp-0.6g-r1 (1 Feb 2002) diff --git a/net-print/gtklp/files/digest-gtklp-0.9k b/net-print/gtklp/files/digest-gtklp-0.9k new file mode 100644 index 000000000000..2bc3d9715ad1 --- /dev/null +++ b/net-print/gtklp/files/digest-gtklp-0.9k @@ -0,0 +1 @@ +MD5 c2586ed9576228369dfc99d968fe2b39 gtklp-0.9k.src.tar.gz 499474 diff --git a/net-print/gtklp/gtklp-0.9k.ebuild b/net-print/gtklp/gtklp-0.9k.ebuild new file mode 100644 index 000000000000..45e9f95729e6 --- /dev/null +++ b/net-print/gtklp/gtklp-0.9k.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-print/gtklp/gtklp-0.9k.ebuild,v 1.1 2002/07/25 22:53:42 spider Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A GUI for cupsd" +SRC_URI="http://www.stud.uni-hannover.de/~sirtobi/gtklp/files/${P}.src.tar.gz" +HOMEPAGE="http://www.stud.uni-hannover.de/~sirtobi/gtklp" +KEYWORDS="x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/glibc + =x11-libs/gtk+-1.2* + >=net-print/cups-1.1.7" +RDEPEND="${DEPEND}" +src_unpack() { + unpack ${P}.src.tar.gz +} + + +src_compile() { + local myconf="" + use nls && myconf="${myconf} --enable-nls" + use nls || myconf="${myconf} --disable-nls" + use ssl && myconf="${myconf} --enable-ssl" + use ssl || myconf="${myconf} --disable-ssl" + + ./configure --host=${CHOST} \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + ${myconf} \ + --prefix=/usr || die + emake ||die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING ChangeLog README NEWS TODO KNOWN_BUGS +} + |