diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2007-04-05 07:00:21 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2007-04-05 07:00:21 +0000 |
commit | ae90d1af2f1fc6ecf0a3d8cf65e4e4279f03e874 (patch) | |
tree | 1e6164ab46e6c6c704c280778524bc109c5b001d /sci-electronics | |
parent | (#172575) Security bump. CVE 2007-1003: XC-MISC extension integer overflow. (diff) | |
download | gentoo-2-ae90d1af2f1fc6ecf0a3d8cf65e4e4279f03e874.tar.gz gentoo-2-ae90d1af2f1fc6ecf0a3d8cf65e4e4279f03e874.tar.bz2 gentoo-2-ae90d1af2f1fc6ecf0a3d8cf65e4e4279f03e874.zip |
Fixed bug #173398, thanks to Stefan Salewski.
(Portage version: 2.1.2.2)
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/geda/ChangeLog | 5 | ||||
-rw-r--r-- | sci-electronics/geda/geda-20070216.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-electronics/geda/ChangeLog b/sci-electronics/geda/ChangeLog index 8978f8b0a565..812cef543be8 100644 --- a/sci-electronics/geda/ChangeLog +++ b/sci-electronics/geda/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-electronics/geda # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v 1.33 2007/03/15 21:50:39 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v 1.34 2007/04/05 07:00:21 calchan Exp $ + + 05 Apr 2007; Denis Dupeyron <calchan@gentoo.org> geda-20070216.ebuild: + Fixed bug #173398, thanks to Stefan Salewski. 15 Mar 2007; Denis Dupeyron <calchan@gentoo.org> geda-20070216.ebuild: Check that media-libs/gd has png support compiled in, see bug #170903, diff --git a/sci-electronics/geda/geda-20070216.ebuild b/sci-electronics/geda/geda-20070216.ebuild index fe791a6145c6..5d60ab26b79c 100644 --- a/sci-electronics/geda/geda-20070216.ebuild +++ b/sci-electronics/geda/geda-20070216.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/sci-electronics/geda/geda-20070216.ebuild,v 1.2 2007/03/15 21:50:39 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/geda-20070216.ebuild,v 1.3 2007/04/05 07:00:21 calchan Exp $ inherit eutils @@ -17,7 +17,7 @@ SRC_URI="http://www.geda.seul.org/devel/${PV}/geda-gattrib-${PV}.tar.gz doc? ( http://www.geda.seul.org/devel/${PV}/geda-docs-${PV}.tar.gz ) examples? ( http://www.geda.seul.org/devel/${PV}/geda-examples-${PV}.tar.gz )" -IUSE="doc examples" +IUSE="doc examples gd" LICENSE="GPL-2" KEYWORDS="~amd64 ~ppc ~sparc ~x86" SLOT="0" @@ -31,7 +31,7 @@ pkg_setup() { built_with_use "dev-scheme/guile" deprecated \ || die "You need either <dev-scheme/guile-1.8, or >=dev-scheme/guile-1.8 with USE=deprecated" fi - built_with_use media-libs/gd png || die "media-libs/gd must be compiled with USE=png" + use gd && built_with_use sci-libs/libgeda gd || die "sci-libs/libgeda must be compiled with USE=gd" } src_compile() { |