diff options
-rw-r--r-- | app-text/ghostscript/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/ghostscript/ghostscript-7.05.5.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/app-text/ghostscript/ChangeLog b/app-text/ghostscript/ChangeLog index 6497422bc4f7..1123883bed09 100644 --- a/app-text/ghostscript/ChangeLog +++ b/app-text/ghostscript/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for app-text/ghostscript # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ChangeLog,v 1.16 2002/10/05 11:14:00 verwilst Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ChangeLog,v 1.17 2002/10/07 17:43:23 raker Exp $ *ghostscript-7.05.5 (18 Sep 2002) + 07 Oct 2002; Nick Hadaway <raker@gentoo.org> ghostscript-7.05.5.ebuild : + Added gnome use variable for gimp-print plugin support. added gnome + to IUSE variables. + 18 Sep 2002; Nick Hadaway <raker@gentoo.org> ghostscript-7.05.5.ebuild, files/digest-ghostscript-7.05.5 : Version bump. The 7.05.5 release fixes some problems in the configure diff --git a/app-text/ghostscript/ghostscript-7.05.5.ebuild b/app-text/ghostscript/ghostscript-7.05.5.ebuild index 617c66bfd66a..0b203c9b7f59 100644 --- a/app-text/ghostscript/ghostscript-7.05.5.ebuild +++ b/app-text/ghostscript/ghostscript-7.05.5.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ghostscript-7.05.5.ebuild,v 1.4 2002/10/05 11:14:00 verwilst Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ghostscript-7.05.5.ebuild,v 1.5 2002/10/07 17:43:23 raker Exp $ -IUSE="X cups" +IUSE="X cups gnome" S=${WORKDIR}/espgs-${PV} @@ -48,6 +48,9 @@ src_compile() { use cups && myconf="${myconf} --enable-cups" \ || myconf="${myconf} --disable-cups" + use gnome && myconf="${myconf} --with-gimp-print" \ + || myconf="${myconf} --without-gimp-print" + econf ${myconf} || die "./configure failed" make || die "make failed" |