diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-28 04:03:38 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-28 04:03:38 +0000 |
commit | 59e70743cc92b4299493d80da7ccd11bbfdb3c3b (patch) | |
tree | 1fcbf05e7425ca18392ac8d3997d57fa1ceb2678 /app-text/dgs/dgs-0.5.10-r1.ebuild | |
parent | New version (diff) | |
download | gentoo-2-59e70743cc92b4299493d80da7ccd11bbfdb3c3b.tar.gz gentoo-2-59e70743cc92b4299493d80da7ccd11bbfdb3c3b.tar.bz2 gentoo-2-59e70743cc92b4299493d80da7ccd11bbfdb3c3b.zip |
cleanup
Diffstat (limited to 'app-text/dgs/dgs-0.5.10-r1.ebuild')
-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 } - |