diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2007-10-13 19:55:35 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2007-10-13 19:55:35 +0000 |
commit | b4db1d08aa256e6c3b8d689ecb3744f7a0eb09cd (patch) | |
tree | a3813112d76088f38521e6f6935140ba6b279039 /x11-libs/agg | |
parent | Version bump. (diff) | |
download | gentoo-2-b4db1d08aa256e6c3b8d689ecb3744f7a0eb09cd.tar.gz gentoo-2-b4db1d08aa256e6c3b8d689ecb3744f7a0eb09cd.tar.bz2 gentoo-2-b4db1d08aa256e6c3b8d689ecb3744f7a0eb09cd.zip |
Add sdl to DEPEND always because upstream does not provide the sdl.m4, bug 186768
(Portage version: 2.1.3.12)
Diffstat (limited to 'x11-libs/agg')
-rw-r--r-- | x11-libs/agg/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/agg/agg-2.5.ebuild | 9 |
2 files changed, 11 insertions, 4 deletions
diff --git a/x11-libs/agg/ChangeLog b/x11-libs/agg/ChangeLog index 5cb74d173d16..5cacf274bb29 100644 --- a/x11-libs/agg/ChangeLog +++ b/x11-libs/agg/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/agg # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/agg/ChangeLog,v 1.7 2007/09/20 12:43:36 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/agg/ChangeLog,v 1.8 2007/10/13 19:55:35 genstef Exp $ + + 13 Oct 2007; Stefan Schweizer <genstef@gentoo.org> agg-2.5.ebuild: + Add sdl to DEPEND always because upstream does not provide the sdl.m4, bug + 186768 20 Sep 2007; Stefan Schweizer <genstef@gentoo.org> agg-2.5.ebuild: Remove incorrect WANT_AUTOCONF setting, bug 192923 diff --git a/x11-libs/agg/agg-2.5.ebuild b/x11-libs/agg/agg-2.5.ebuild index 57794c5edaff..4cef36e5a28c 100644 --- a/x11-libs/agg/agg-2.5.ebuild +++ b/x11-libs/agg/agg-2.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/agg/agg-2.5.ebuild,v 1.6 2007/09/20 12:43:36 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/agg/agg-2.5.ebuild,v 1.7 2007/10/13 19:55:35 genstef Exp $ inherit eutils autotools @@ -12,12 +12,15 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" IUSE="sdl truetype X" -DEPEND="sdl? ( >=media-libs/libsdl-1.2.0 ) +RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 ) X? ( x11-libs/libX11 ) truetype? ( >=media-libs/freetype-2 )" + # sdl.m4 missing in the tarball +DEPEND="media-libs/libsdl + ${RDEPEND}" src_compile() { - eautoreconf || die "eautoreconf failed" + eautoreconf # examples are not (yet) installed, so do not compile them econf \ --enable-ctrl \ |