summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2007-02-07 18:46:34 +0000
committerDenis Dupeyron <calchan@gentoo.org>2007-02-07 18:46:34 +0000
commitf9872b1839f8ec4af0c2b468787ec8ec4fbb2664 (patch)
treee15cd0d40f6b9bb42bb33c89b02ee009e6c7db90 /sci-libs
parentNew revisions, not using the poppler patch. Add patch for security bug in 3.5... (diff)
downloadgentoo-2-f9872b1839f8ec4af0c2b468787ec8ec4fbb2664.tar.gz
gentoo-2-f9872b1839f8ec4af0c2b468787ec8ec4fbb2664.tar.bz2
gentoo-2-f9872b1839f8ec4af0c2b468787ec8ec4fbb2664.zip
Removed bad usage of USE=static, see bug #165744, thanks to Jakub Moc.
(Portage version: 2.1.2-r5)
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/libgeda/ChangeLog6
-rw-r--r--sci-libs/libgeda/libgeda-20060123.ebuild11
-rw-r--r--sci-libs/libgeda/libgeda-20060824.ebuild9
-rw-r--r--sci-libs/libgeda/libgeda-20060906.ebuild9
-rw-r--r--sci-libs/libgeda/libgeda-20061020.ebuild9
5 files changed, 16 insertions, 28 deletions
diff --git a/sci-libs/libgeda/ChangeLog b/sci-libs/libgeda/ChangeLog
index 6056d044af22..471d50eab347 100644
--- a/sci-libs/libgeda/ChangeLog
+++ b/sci-libs/libgeda/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-libs/libgeda
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.27 2007/01/10 18:43:00 peper Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.28 2007/02/07 18:46:34 calchan Exp $
+
+ 07 Feb 2007; Denis Dupeyron <calchan@gentoo.org> libgeda-20060123.ebuild,
+ libgeda-20060824.ebuild, libgeda-20060906.ebuild, libgeda-20061020.ebuild:
+ Removed bad usage of USE=static, see bug #165744, thanks to Jakub Moc.
10 Jan 2007; Piotr Jaroszyński <peper@gentoo.org> Manifest:
Fix Manifest.
diff --git a/sci-libs/libgeda/libgeda-20060123.ebuild b/sci-libs/libgeda/libgeda-20060123.ebuild
index aabc2164a5d0..93576f44bacc 100644
--- a/sci-libs/libgeda/libgeda-20060123.ebuild
+++ b/sci-libs/libgeda/libgeda-20060123.ebuild
@@ -1,12 +1,12 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20060123.ebuild,v 1.6 2007/01/10 17:37:39 hkbst Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20060123.ebuild,v 1.7 2007/02/07 18:46:34 calchan Exp $
HOMEPAGE="http://www.geda.seul.org"
DESCRIPTION="libgeda - this library provides functions needed for the gEDA core suite"
SRC_URI="http://www.geda.seul.org/devel/${PV}/libgeda-${PV}.tar.gz"
-IUSE="png static"
+IUSE="png"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc sparc x86"
SLOT="0"
@@ -22,13 +22,12 @@ src_compile () {
local myconf
use png || myconf='--disable-gdgeda'
- use static && myconf="${myconf} --enable-static --disable-shared"
- econf ${myconf} || die
- emake || die
+ econf ${myconf} || die "Configuration failed"
+ emake || die "Compilation failed"
}
src_install () {
- einstall || die
+ einstall || die "Installation failed"
dodoc AUTHORS COPYING ChangeLog README
}
diff --git a/sci-libs/libgeda/libgeda-20060824.ebuild b/sci-libs/libgeda/libgeda-20060824.ebuild
index 0c996f5955b3..db242522e45b 100644
--- a/sci-libs/libgeda/libgeda-20060824.ebuild
+++ b/sci-libs/libgeda/libgeda-20060824.ebuild
@@ -1,12 +1,12 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20060824.ebuild,v 1.3 2007/01/10 17:38:01 hkbst Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20060824.ebuild,v 1.4 2007/02/07 18:46:34 calchan Exp $
HOMEPAGE="http://www.geda.seul.org"
DESCRIPTION="libgeda - this library provides functions needed for the gEDA core suite"
SRC_URI="http://www.geda.seul.org/devel/${PV}/libgeda-${PV}.tar.gz"
-IUSE="static"
+IUSE=""
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
SLOT="0"
@@ -26,12 +26,7 @@ src_unpack() {
}
src_compile() {
- local myconf
-
- use static && myconf="${myconf} --enable-static --disable-shared"
-
econf \
- ${myconf} \
--disable-gdgeda \
--disable-dependency-tracking \
|| die "Configuration failed"
diff --git a/sci-libs/libgeda/libgeda-20060906.ebuild b/sci-libs/libgeda/libgeda-20060906.ebuild
index c31eca28ad1f..36378e8746b2 100644
--- a/sci-libs/libgeda/libgeda-20060906.ebuild
+++ b/sci-libs/libgeda/libgeda-20060906.ebuild
@@ -1,12 +1,12 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20060906.ebuild,v 1.3 2007/01/10 17:38:23 hkbst Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20060906.ebuild,v 1.4 2007/02/07 18:46:34 calchan Exp $
HOMEPAGE="http://www.geda.seul.org"
DESCRIPTION="libgeda - this library provides functions needed for the gEDA core suite"
SRC_URI="http://www.geda.seul.org/devel/${PV}/libgeda-${PV}.tar.gz"
-IUSE="static"
+IUSE=""
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
SLOT="0"
@@ -26,12 +26,7 @@ src_unpack() {
}
src_compile() {
- local myconf
-
- use static && myconf="${myconf} --enable-static --disable-shared"
-
econf \
- ${myconf} \
--disable-gdgeda \
--disable-dependency-tracking \
|| die "Configuration failed"
diff --git a/sci-libs/libgeda/libgeda-20061020.ebuild b/sci-libs/libgeda/libgeda-20061020.ebuild
index e6e86242d286..f552d3001203 100644
--- a/sci-libs/libgeda/libgeda-20061020.ebuild
+++ b/sci-libs/libgeda/libgeda-20061020.ebuild
@@ -1,12 +1,12 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20061020.ebuild,v 1.3 2007/01/10 17:38:45 hkbst Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20061020.ebuild,v 1.4 2007/02/07 18:46:34 calchan Exp $
HOMEPAGE="http://www.geda.seul.org"
DESCRIPTION="libgeda - this library provides functions needed for the gEDA core suite"
SRC_URI="http://www.geda.seul.org/devel/${PV}/libgeda-${PV}.tar.gz"
-IUSE="static"
+IUSE=""
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
SLOT="0"
@@ -26,12 +26,7 @@ src_unpack() {
}
src_compile() {
- local myconf
-
- use static && myconf="${myconf} --enable-static --disable-shared"
-
econf \
- ${myconf} \
--disable-gdgeda \
--disable-dependency-tracking \
|| die "Configuration failed"