diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-12 16:56:03 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-12 16:56:03 +0000 |
commit | a8e69d20de73e6c48195d7be5e8068bda5977109 (patch) | |
tree | 07d42cb7585118f89dfda8341d379da1857388b9 /app-text/a2ps | |
parent | atk is the accessibility toolkit, part of gtk2 (diff) | |
download | gentoo-2-a8e69d20de73e6c48195d7be5e8068bda5977109.tar.gz gentoo-2-a8e69d20de73e6c48195d7be5e8068bda5977109.tar.bz2 gentoo-2-a8e69d20de73e6c48195d7be5e8068bda5977109.zip |
Cleaned up ebuild syntax and DEPEND and also changed the tex USE flag to tetex instead
Diffstat (limited to 'app-text/a2ps')
-rw-r--r-- | app-text/a2ps/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/a2ps/a2ps-4.13b-r3.ebuild | 61 |
2 files changed, 38 insertions, 32 deletions
diff --git a/app-text/a2ps/ChangeLog b/app-text/a2ps/ChangeLog index 75ad9fbabde5..2cb5a23be809 100644 --- a/app-text/a2ps/ChangeLog +++ b/app-text/a2ps/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-text/a2ps # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/ChangeLog,v 1.1 2002/02/01 21:53:09 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/ChangeLog,v 1.2 2002/04/12 16:56:03 seemant Exp $ + +*a2ps-4.13b-r3 (12 Apr 2002) + + 12 Apr 2002; Seemant Kulleen <seemant@gentoo.org> a2ps-4.13b-r3.ebuild : + + Changed the tex flag to tetex instead. Also, cleaned up the ebuild a little. + *a2ps-4.13b-r3 (1 Feb 2002) diff --git a/app-text/a2ps/a2ps-4.13b-r3.ebuild b/app-text/a2ps/a2ps-4.13b-r3.ebuild index 61f4f2ed9f92..6a16f274ee2b 100644 --- a/app-text/a2ps/a2ps-4.13b-r3.ebuild +++ b/app-text/a2ps/a2ps-4.13b-r3.ebuild @@ -1,55 +1,54 @@ -# 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/a2ps/a2ps-4.13b-r3.ebuild,v 1.2 2001/06/03 09:54:22 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/a2ps-4.13b-r3.ebuild,v 1.3 2002/04/12 16:56:03 seemant Exp $ P=a2ps-4.13b -A=${P}.tar.gz S=${WORKDIR}/a2ps-4.13 DESCRIPTION="a2ps is an Any to PostScript filter" -SRC_URI="ftp://ftp.enst.fr/pub/unix/a2ps/"${A} +SRC_URI="ftp://ftp.enst.fr/pub/unix/a2ps/${P}.tar.gz" HOMEPAGE="http://www-inf.enst.fr/~demaille/a2ps" -DEPEND="virtual/glibc - nls? ( sys-devel/gettext ) - >=app-text/ghostscript-6.23 +DEPEND=">=app-text/ghostscript-6.23 >=app-text/psutils-1.17 - tex? ( >=app-text/tetex-1.0.7 )" + tetex? ( >=app-text/tetex-1.0.7 )" -RDEPEND="virtual/glibc - >=app-text/ghostscript-6.23 - >=app-text/psutils-1.17 - tex? ( >=app-text/tetex-1.0.7 )" +RDEPEND="${DEPEND} + nls? ( sys-devel/gettext )" + + src_compile() { - local myconf + local myconf - if [ -z "`use nls`" ] - then - myconf="--disable-nls" - fi + use nls || myconf="--disable-nls" - try ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/a2ps \ - --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-static \ - ${myconf} + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc/a2ps \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --enable-shared \ + --enable-static \ + ${myconf} || die - try make + emake || die } src_install() { - dodir /usr/share/emacs/site-lisp + dodir /usr/share/emacs/site-lisp - try make prefix=${D}/usr sysconfdir=${D}/etc/a2ps \ - mandir=${D}/usr/share/man infodir=${D}/usr/share/info \ - lispdir=${D}/usr/share/emacs/site-lisp install + make \ + prefix=${D}/usr \ + sysconfdir=${D}/etc/a2ps \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + lispdir=${D}/usr/share/emacs/site-lisp \ + install || die - dodoc ANNOUNCE AUTHORS ChangeLog COPYING FAQ NEWS README THANKS TODO + dodoc ANNOUNCE AUTHORS ChangeLog COPYING FAQ NEWS README THANKS TODO } - - - - - |