diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-01-04 17:23:07 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-01-04 17:23:07 +0000 |
commit | 08fe87d0479f586674bbf5278cfeb79782a0196a (patch) | |
tree | 9395ecc30a11f580bee3ce568e5442e7af3f8723 /app-text/xml2doc | |
parent | never mind, DOES work for me (diff) | |
download | historical-08fe87d0479f586674bbf5278cfeb79782a0196a.tar.gz historical-08fe87d0479f586674bbf5278cfeb79782a0196a.tar.bz2 historical-08fe87d0479f586674bbf5278cfeb79782a0196a.zip |
SRC_URI fix thanks to: James Cloos <cloos@jhcloos.com> in bug #37201
Diffstat (limited to 'app-text/xml2doc')
-rw-r--r-- | app-text/xml2doc/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/xml2doc/Manifest | 4 | ||||
-rw-r--r-- | app-text/xml2doc/xml2doc-20030510.ebuild | 23 |
3 files changed, 15 insertions, 17 deletions
diff --git a/app-text/xml2doc/ChangeLog b/app-text/xml2doc/ChangeLog index ce46a7f4df7a..26989aa72038 100644 --- a/app-text/xml2doc/ChangeLog +++ b/app-text/xml2doc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/xml2doc # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/ChangeLog,v 1.1 2003/10/16 15:11:39 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/ChangeLog,v 1.2 2004/01/04 17:23:01 seemant Exp $ + + 04 Jan 2004; Seemant Kulleen <seemant@gentoo.org> xml2doc-20030510.ebuild: + SRC_URI fix thanks to: James Cloos <cloos@jhcloos.com> in bug #37201 *xml2doc-20030510 (16 Oct 2003) diff --git a/app-text/xml2doc/Manifest b/app-text/xml2doc/Manifest index c27e9903f801..31a168adf208 100644 --- a/app-text/xml2doc/Manifest +++ b/app-text/xml2doc/Manifest @@ -1,4 +1,4 @@ -MD5 f0f23edca8cc06cd25f75d83ea5b8385 ChangeLog 419 -MD5 bf041abda3dd101b346db4b42a472b7e xml2doc-20030510.ebuild 1026 +MD5 a6e1981d62bff288f97b87916ce3318e ChangeLog 572 +MD5 b9c1c98dadf22b31e1cc40d79174da0d xml2doc-20030510.ebuild 1075 MD5 c472f5fd1646eb8bca71d8df5cb2bdcc metadata.xml 164 MD5 7e303f487b570296c2d407c4bcf15736 files/digest-xml2doc-20030510 64 diff --git a/app-text/xml2doc/xml2doc-20030510.ebuild b/app-text/xml2doc/xml2doc-20030510.ebuild index 5051e751d693..bd1976df4395 100644 --- a/app-text/xml2doc/xml2doc-20030510.ebuild +++ b/app-text/xml2doc/xml2doc-20030510.ebuild @@ -1,33 +1,29 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/xml2doc-20030510.ebuild,v 1.1 2003/10/16 15:11:39 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/xml2doc-20030510.ebuild,v 1.2 2004/01/04 17:23:01 seemant Exp $ +IUSE="pdflib" + +S=${WORKDIR}/${PN} DESCRIPTION="An XML processor tool that allows for converting documents written in simple XML to a variety of document formats (eg pdf,html,txt,manpage)" -SRC_URI="mirror://sourceforge/${PN}/src/${P}.tgz" HOMEPAGE="http://xml2doc.sourceforge.net" -LICENSE="GPL-2" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" -IUSE="pdflib" -KEYWORDS="~x86" SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~arm ~amd64 ~ia64 ~ppc64" DEPEND=">=dev-libs/libxml2-2.5 pdflib? ( >=media-libs/pdflib-4 )" -S=${WORKDIR}/${PN} - src_compile() { - - local myconf="" use pdflib || myconf="${myconf} --disable-pdf" - econf ${myconf} || die + econf `use_enable pdflib pdf` || die emake || die - } src_install() { - # xml2doc's make install is unfortunately broken # binary dobin ${S}/src/xml2doc @@ -39,5 +35,4 @@ src_install() { cd ${S}/doc ${S}/src/xml2doc -oM manpage.xml xml2doc.1 doman xml2doc.1 - } |