diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-08 23:02:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-08 23:02:01 +0000 |
commit | 8aa9fcb533e72d93fcba1f33d47e35cbf4812438 (patch) | |
tree | c390c7a70f69670147e4e1c2ae43b2ceb70e7378 /app-text/xmlto | |
parent | Change XVendorString to be compatible with upstream so people can strstr for ... (diff) | |
download | gentoo-2-8aa9fcb533e72d93fcba1f33d47e35cbf4812438.tar.gz gentoo-2-8aa9fcb533e72d93fcba1f33d47e35cbf4812438.tar.bz2 gentoo-2-8aa9fcb533e72d93fcba1f33d47e35cbf4812438.zip |
add inherit eutils
Diffstat (limited to 'app-text/xmlto')
-rw-r--r-- | app-text/xmlto/xmlto-0.0.15.ebuild | 22 | ||||
-rw-r--r-- | app-text/xmlto/xmlto-0.0.17.ebuild | 25 |
2 files changed, 16 insertions, 31 deletions
diff --git a/app-text/xmlto/xmlto-0.0.15.ebuild b/app-text/xmlto/xmlto-0.0.15.ebuild index 05bc55004868..36493bb66ece 100644 --- a/app-text/xmlto/xmlto-0.0.15.ebuild +++ b/app-text/xmlto/xmlto-0.0.15.ebuild @@ -1,15 +1,17 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xmlto/xmlto-0.0.15.ebuild,v 1.15 2004/01/14 20:45:44 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlto/xmlto-0.0.15.ebuild,v 1.16 2004/04/08 23:00:58 vapier Exp $ + +inherit eutils DESCRIPTION="A bash script for converting XML and DocBook formatted documents to a variety of output formats" HOMEPAGE="http://cyberelk.net/tim/xmlto/" SRC_URI="http://cyberelk.net/tim/data/${PN}/stable/${P}.tar.bz2" -LICENSE="GPL-2" +LICENSE="GPL-2" SLOT="0" -IUSE="" KEYWORDS="x86 ~ppc sparc alpha ia64 hppa" +IUSE="" DEPEND="app-shells/bash dev-libs/libxslt @@ -19,30 +21,20 @@ DEPEND="app-shells/bash # Passivetex/xmltex need some sorting out, we'll include pdf/dvi/tex # support in the first revision to xmlto <obz@gentoo.org> -# not parrallel safe, thanks <agriffis@gentoo.org>, bug #33151 -MAKEOPTS="${MAKEOPTS} -j1" - src_unpack() { - unpack ${A} cd ${S} epatch ${FILESDIR}/${PN}-head-fix.patch - } src_compile() { - econf || die - emake || die - + emake -j1 || die } src_install() { - make DESTDIR=${D} prefix="/usr" install || die - dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README + dodoc AUTHORS ChangeLog INSTALL NEWS README insinto /usr/share/doc/${P}/xml doins doc/*.xml - } - diff --git a/app-text/xmlto/xmlto-0.0.17.ebuild b/app-text/xmlto/xmlto-0.0.17.ebuild index 6a32673beec8..f14285f20bb4 100644 --- a/app-text/xmlto/xmlto-0.0.17.ebuild +++ b/app-text/xmlto/xmlto-0.0.17.ebuild @@ -1,15 +1,17 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xmlto/xmlto-0.0.17.ebuild,v 1.5 2004/03/16 04:47:56 geoman Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlto/xmlto-0.0.17.ebuild,v 1.6 2004/04/08 23:01:23 vapier Exp $ + +inherit eutils DESCRIPTION="A bash script for converting XML and DocBook formatted documents to a variety of output formats" HOMEPAGE="http://cyberelk.net/tim/xmlto/" SRC_URI="http://cyberelk.net/tim/data/${PN}/stable/${P}.tar.bz2" -LICENSE="GPL-2" +LICENSE="GPL-2" SLOT="0" -IUSE="" KEYWORDS="~x86 ppc ~sparc ~alpha ~ia64 amd64 ~mips" +IUSE="" DEPEND="app-shells/bash dev-libs/libxslt @@ -18,29 +20,20 @@ DEPEND="app-shells/bash # tetex? ( >=app-text/passivetex-1.4 )" # Passivetex/xmltex need some sorting out <obz@gentoo.org> -# not parrallel safe, thanks <agriffis@gentoo.org>, bug #33151 -MAKEOPTS="${MAKEOPTS} -j1" - src_unpack() { - - unpack ${A}; cd ${S} + unpack ${A} + cd ${S} epatch ${FILESDIR}/${PN}-head-fix.patch - } src_compile() { - econf || die - emake || die - + emake -j1 || die } src_install() { - make DESTDIR=${D} prefix="/usr" install || die - dodoc AUTHORS COPYING ChangeLog FAQ INSTALL NEWS README + dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README insinto /usr/share/doc/${P}/xml doins doc/*.xml - } - |