diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-22 16:36:27 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-22 16:36:27 +0000 |
commit | c011e1c0f51ff2c46287e973d84524f64874f8eb (patch) | |
tree | 4124a4abc341a75b9c14a7cef18e2a350b7811d8 /app-text/xml2doc | |
parent | Drop unnecessary x11-libs/gtk+ dependency with USE=cairo. (diff) | |
download | gentoo-2-c011e1c0f51ff2c46287e973d84524f64874f8eb.tar.gz gentoo-2-c011e1c0f51ff2c46287e973d84524f64874f8eb.tar.bz2 gentoo-2-c011e1c0f51ff2c46287e973d84524f64874f8eb.zip |
Say goodbye to pdflib and pdf useflag. Didn't compile with it anyway.
(Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
Diffstat (limited to 'app-text/xml2doc')
-rw-r--r-- | app-text/xml2doc/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/xml2doc/xml2doc-20030510-r1.ebuild | 11 |
2 files changed, 11 insertions, 8 deletions
diff --git a/app-text/xml2doc/ChangeLog b/app-text/xml2doc/ChangeLog index 045486787fec..b12eca14136f 100644 --- a/app-text/xml2doc/ChangeLog +++ b/app-text/xml2doc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/xml2doc -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/ChangeLog,v 1.25 2009/06/20 11:51:43 flameeyes Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/ChangeLog,v 1.26 2011/02/22 16:36:27 scarabeus Exp $ + + 22 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> + xml2doc-20030510-r1.ebuild: + Say goodbye to pdflib and pdf useflag. Didn't compile with it anyway. 20 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> -xml2doc-20030510.ebuild: diff --git a/app-text/xml2doc/xml2doc-20030510-r1.ebuild b/app-text/xml2doc/xml2doc-20030510-r1.ebuild index 65f1d001094e..b8e001aae8c1 100644 --- a/app-text/xml2doc/xml2doc-20030510-r1.ebuild +++ b/app-text/xml2doc/xml2doc-20030510-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/xml2doc-20030510-r1.ebuild,v 1.9 2009/06/19 21:37:05 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xml2doc/xml2doc-20030510-r1.ebuild,v 1.10 2011/02/22 16:36:27 scarabeus Exp $ inherit eutils @@ -10,13 +10,12 @@ HOMEPAGE="http://xml2doc.sourceforge.net" SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" LICENSE="GPL-2" -IUSE="pdf" +IUSE="" SLOT="0" KEYWORDS="alpha amd64 ~hppa ia64 ~mips ppc ppc64 sparc x86" -DEPEND=">=dev-libs/libxml2-2.5 - pdf? ( >=media-libs/pdflib-4 )" +DEPEND=">=dev-libs/libxml2-2.5" RDEPEND="${DEPEND}" S=${WORKDIR}/${PN} @@ -37,7 +36,7 @@ src_unpack() { } src_compile() { - econf $(use_enable pdf) || die "./configure failed" + econf --disable-pdf emake || die "Compilation failed" cd "${S}/doc" |