diff options
author | 2008-09-06 21:28:24 +0000 | |
---|---|---|
committer | 2008-09-06 21:28:24 +0000 | |
commit | 00fe5d2157fa482e110f9c7bce213418786d6f3c (patch) | |
tree | 63024c068526968d754f0009054f2cec1899d38e /dev-cpp | |
parent | Bump. Thanks tommy. (diff) | |
download | gentoo-2-00fe5d2157fa482e110f9c7bce213418786d6f3c.tar.gz gentoo-2-00fe5d2157fa482e110f9c7bce213418786d6f3c.tar.bz2 gentoo-2-00fe5d2157fa482e110f9c7bce213418786d6f3c.zip |
Unable to build due to symlinks to non-existant libtool files, thanks to Evil Compile Person <bugs AT dev DOT gentooexperimental DOT org>; bug #227477
(Portage version: 2.2_rc8/cvs/Linux 2.6.26-rc5 i686)
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/libmxmlplus/ChangeLog | 8 | ||||
-rw-r--r-- | dev-cpp/libmxmlplus/libmxmlplus-0.9.2_p20080323.ebuild | 13 |
2 files changed, 18 insertions, 3 deletions
diff --git a/dev-cpp/libmxmlplus/ChangeLog b/dev-cpp/libmxmlplus/ChangeLog index 423923836f4e..c772f99bf84c 100644 --- a/dev-cpp/libmxmlplus/ChangeLog +++ b/dev-cpp/libmxmlplus/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-cpp/libmxmlplus # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libmxmlplus/ChangeLog,v 1.5 2008/03/24 20:50:14 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libmxmlplus/ChangeLog,v 1.6 2008/09/06 21:28:24 halcy0n Exp $ + + 06 Sep 2008; Mark Loeser <halcy0n@gentoo.org> + libmxmlplus-0.9.2_p20080323.ebuild: + Unable to build due to symlinks to non-existant libtool files, thanks to + Evil Compile Person <bugs AT dev DOT gentooexperimental DOT org>; bug + #227477 *libmxmlplus-0.9.2_p20080323 (24 Mar 2008) diff --git a/dev-cpp/libmxmlplus/libmxmlplus-0.9.2_p20080323.ebuild b/dev-cpp/libmxmlplus/libmxmlplus-0.9.2_p20080323.ebuild index a5ae6de3265e..7b9f785cc0b0 100644 --- a/dev-cpp/libmxmlplus/libmxmlplus-0.9.2_p20080323.ebuild +++ b/dev-cpp/libmxmlplus/libmxmlplus-0.9.2_p20080323.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libmxmlplus/libmxmlplus-0.9.2_p20080323.ebuild,v 1.1 2008/03/24 20:50:14 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libmxmlplus/libmxmlplus-0.9.2_p20080323.ebuild,v 1.2 2008/09/06 21:28:24 halcy0n Exp $ + +inherit autotools DESCRIPTION="Minimal XML DOM Library" SRC_URI="mirror://gentoo/${P}.tar.lzma" @@ -14,6 +16,13 @@ DEPEND="doc? ( app-doc/doxygen ) app-arch/lzma-utils" RDEPEND="" +src_unpack() +{ + unpack ${A} + cd "${S}" + eautoreconf +} + src_compile() { econf \ --enable-shared \ @@ -23,7 +32,7 @@ src_compile() { } src_install () { - emake DESTDIR=${D} install || die "emake install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README RELNOTES TODO |