diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-07-19 23:56:30 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-07-19 23:56:30 +0000 |
commit | 8fb819c031a886d7506e6c7c7893a400c722ffb8 (patch) | |
tree | 06f2ebd4805bb61dfc67cb0fe085b81206c819dd /app-text | |
parent | Removed unnecessary cups dep. (diff) | |
download | historical-8fb819c031a886d7506e6c7c7893a400c722ffb8.tar.gz historical-8fb819c031a886d7506e6c7c7893a400c722ffb8.tar.bz2 historical-8fb819c031a886d7506e6c7c7893a400c722ffb8.zip |
fixo
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/ghostscript/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/ghostscript/files/digest-ghostscript-7.05.3 | 4 | ||||
-rw-r--r-- | app-text/ghostscript/ghostscript-7.05.3.ebuild | 56 |
3 files changed, 7 insertions, 61 deletions
diff --git a/app-text/ghostscript/ChangeLog b/app-text/ghostscript/ChangeLog index 57a6a8c34911..6d6877a95b4a 100644 --- a/app-text/ghostscript/ChangeLog +++ b/app-text/ghostscript/ChangeLog @@ -1,6 +1,12 @@ # 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.12 2002/07/16 03:50:42 owen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ChangeLog,v 1.13 2002/07/19 23:56:28 g2boojum Exp $ + +*ghostscript-7.05.3 (19 Jul 2002) + + 19 Jul 2002; Grant Goodyear <g2boojum@gentoo.org> ChangeLog : + + removed unnecessary cups dep *ghostscript-7.05.3-r1 (12 Jul 2002) diff --git a/app-text/ghostscript/files/digest-ghostscript-7.05.3 b/app-text/ghostscript/files/digest-ghostscript-7.05.3 deleted file mode 100644 index d0004ebdedeb..000000000000 --- a/app-text/ghostscript/files/digest-ghostscript-7.05.3 +++ /dev/null @@ -1,4 +0,0 @@ -MD5 e21697ae9c4aa82d16e48f202ba6f69c espgs-7.05.3-source.tar.bz2 4223681 -MD5 1521fab85ca3e8ce3ce781d4970e6c79 gnu-gs-fonts-std-6.0.tar.gz 1881193 -MD5 33457d3f37de7ef03d2eea05a9e6aa4f gnu-gs-fonts-other-6.0.tar.gz 796086 -MD5 ec11b9ef72ecaabb61eeba27e93f9f2b lxm3200-0.4.1-gs5.50-src.tar.gz 37283 diff --git a/app-text/ghostscript/ghostscript-7.05.3.ebuild b/app-text/ghostscript/ghostscript-7.05.3.ebuild deleted file mode 100644 index 1a3df2916fe2..000000000000 --- a/app-text/ghostscript/ghostscript-7.05.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ghostscript-7.05.3.ebuild,v 1.3 2002/07/16 03:50:42 owen Exp $ - -S=${WORKDIR}/espgs-${PV} -DESCRIPTION="ESP Ghostscript -- an enhanced version of GNU Ghostscript with better printer support" -SRC_URI="ftp://ftp.easysw.com/pub/ghostscript/espgs-${PV}-source.tar.bz2 -ftp://ftp.easysw.com/pub/ghostscript/gnu-gs-fonts-std-6.0.tar.gz -ftp://ftp.easysw.com/pub/ghostscript/gnu-gs-fonts-other-6.0.tar.gz -http://lxm3200.sourceforge.net/lxm3200-0.4.1-gs5.50-src.tar.gz" -HOMEPAGE="http://www.easysw.com/" -DEPEND="virtual/glibc >=media-libs/jpeg-6b >=media-libs/libpng-1.2.1 >=sys-libs/zlib-1.1.4 X? ( virtual/x11 ) cups? ( >=net-print/cups-1.1.15 )" -RDEPEND="${DEPEND}" -LICENSE="GPL-2 LGPL-2" -SLOT="0" -KEYWORDS="x86 ppc" - -src_unpack() { - unpack espgs-${PV}-source.tar.bz2 || die - unpack gnu-gs-fonts-std-6.0.tar.gz || die - unpack gnu-gs-fonts-other-6.0.tar.gz || die - unpack lxm3200-0.4.1-gs5.50-src.tar.gz || die - cat ${FILESDIR}/lxm3200-cups.diff | patch -p1 -d ${S} || die "lxm3200 patch failed" - cp ${WORKDIR}/lxm3200-0.4.1-gs5.50-src/gdevlx32.c ${S}/src/ || die -} - -src_compile() { - use X && myconf="--with-x" || myconf="--without-x" - use cups && myconf="${myconf} --enable-cups" || myconf="${myconf} --disable-cups" - - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --with-gimp-print \ - ${myconf} || die "./configure failed" - - emake || die "make failed" -} - -src_install() { - make \ - prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - install_prefix=${D} \ - install || die "make install failed" - - cd ${WORKDIR} - cp -a fonts ${D}/usr/share/ghostscript || die - cd ${S} - - rm -fr ${D}/usr/share/ghostscript/7.05/doc || die - dodoc doc/README doc/COPYING doc/COPYING.LGPL - dohtml doc/*.html doc/*.htm - insinto /usr/share/emacs/site-lisp - doins doc/gsdoc.el || die -} |