diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-28 03:59:30 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-28 03:59:30 +0000 |
commit | 21917ca4bf0ba5a62865a75fd3c3113a5aa03a64 (patch) | |
tree | 1bf9fa56ae77a674e1cc217886a64b3237a3d019 /app-text/dgs | |
parent | version bump, and cleanup of old ebuilds (diff) | |
download | historical-21917ca4bf0ba5a62865a75fd3c3113a5aa03a64.tar.gz historical-21917ca4bf0ba5a62865a75fd3c3113a5aa03a64.tar.bz2 historical-21917ca4bf0ba5a62865a75fd3c3113a5aa03a64.zip |
cleanup
Diffstat (limited to 'app-text/dgs')
-rw-r--r-- | app-text/dgs/dgs-0.5.10-r1.ebuild | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/app-text/dgs/dgs-0.5.10-r1.ebuild b/app-text/dgs/dgs-0.5.10-r1.ebuild index dd62dd22bfe4..fb4730e5571b 100644 --- a/app-text/dgs/dgs-0.5.10-r1.ebuild +++ b/app-text/dgs/dgs-0.5.10-r1.ebuild @@ -1,16 +1,15 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-text/dgs/dgs-0.5.10-r1.ebuild,v 1.5 2002/04/12 19:07:56 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dgs/dgs-0.5.10-r1.ebuild,v 1.6 2002/04/28 03:59:29 seemant Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="A Ghostscript based DPS server" -SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/dgs/${A}" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/dgs/${P}.tar.gz" HOMEPAGE="http://www.aist-nara.ac.jp/~masata-y/dgs/index.html" DEPEND="virtual/glibc sys-apps/texinfo - >=sys-apps/tcp-wrappers-7.6 + >=sys-apps/tcp-wrappers-7.6 =dev-libs/glib-1.2* virtual/x11" @@ -19,22 +18,21 @@ RDEPEND="virtual/glibc virtual/x11" src_unpack() { - unpack ${A} - cd ${S} - patch -p0 < ${FILESDIR}/${P}-gs-time_.h-gentoo.diff + unpack ${A} + cd ${S} + patch -p0 < ${FILESDIR}/${P}-gs-time_.h-gentoo.diff } src_compile() { - try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} --with-x - try make + econf "--with-x" || die + make || die } src_install () { - make prefix=${D}/usr mandir=${D}/usr/share/man install - - dodoc ANNOUNCE ChangeLog FAQ NEWS NOTES README STATUS TODO Version + einstall || die + + dodoc ANNOUNCE ChangeLog FAQ NEWS NOTES README STATUS TODO Version } - |