diff options
author | Marius Mauch <genone@gentoo.org> | 2006-01-22 18:15:31 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2006-01-22 18:15:31 +0000 |
commit | 404a31496a5c53989d8216ef8628463192e7cc95 (patch) | |
tree | 3b823eb89e2d8a0abbe9f0c008a28655cb5634e1 /app-text/xml2doc | |
parent | Replacing pdflib use flag with pdf use flag (diff) | |
download | gentoo-2-404a31496a5c53989d8216ef8628463192e7cc95.tar.gz gentoo-2-404a31496a5c53989d8216ef8628463192e7cc95.tar.bz2 gentoo-2-404a31496a5c53989d8216ef8628463192e7cc95.zip |
Replacing pdflib use flag with pdf use flag
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'app-text/xml2doc')
-rw-r--r-- | app-text/xml2doc/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/xml2doc/xml2doc-20030510.ebuild | 12 |
2 files changed, 10 insertions, 9 deletions
diff --git a/app-text/xml2doc/ChangeLog b/app-text/xml2doc/ChangeLog index ff7b9267a7cb..335ba721aa19 100644 --- a/app-text/xml2doc/ChangeLog +++ b/app-text/xml2doc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/xml2doc -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/ChangeLog,v 1.12 2005/12/01 05:21:33 tgall Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/ChangeLog,v 1.13 2006/01/22 18:15:31 genone Exp $ + + 22 Jan 2006; Marius Mauch <genone@gentoo.org> xml2doc-20030510.ebuild: + Replacing pdflib use flag with pdf use flag 30 Nov 2005; Tom Gall <tgall@gentoo.org> xml2doc-20030510.ebuild: stable on ppc64 diff --git a/app-text/xml2doc/xml2doc-20030510.ebuild b/app-text/xml2doc/xml2doc-20030510.ebuild index b378d2f7f1e6..5b5b3c768de2 100644 --- a/app-text/xml2doc/xml2doc-20030510.ebuild +++ b/app-text/xml2doc/xml2doc-20030510.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/xml2doc-20030510.ebuild,v 1.12 2005/12/01 05:21:33 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/xml2doc-20030510.ebuild,v 1.13 2006/01/22 18:15:31 genone Exp $ -IUSE="pdflib" +IUSE="pdf" 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)" @@ -14,12 +14,10 @@ SLOT="0" KEYWORDS="x86 ppc sparc alpha ~hppa ~mips amd64 ia64 ppc64" DEPEND=">=dev-libs/libxml2-2.5 - pdflib? ( >=media-libs/pdflib-4 )" + pdf? ( >=media-libs/pdflib-4 )" src_compile() { - use pdflib || myconf="${myconf} --disable-pdf" - - econf `use_enable pdflib pdf` || die + econf `use_enable pdf` || die emake || die } |