summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-09-25 11:12:43 +0000
committerMike Frysinger <vapier@gentoo.org>2005-09-25 11:12:43 +0000
commitaff9025e709bd6900337d7f1692df51a2e5c3485 (patch)
treecb22b94359fd966761212bad597e92ebb8bafecf /dev-libs
parentClean up ebuild. (diff)
downloadgentoo-2-aff9025e709bd6900337d7f1692df51a2e5c3485.tar.gz
gentoo-2-aff9025e709bd6900337d7f1692df51a2e5c3485.tar.bz2
gentoo-2-aff9025e709bd6900337d7f1692df51a2e5c3485.zip
Cleanup ebuild and enable shared libraries #52271.
(Portage version: 2.0.52-r1 http://www.bash.org/?136501 )
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/ucl/ChangeLog7
-rw-r--r--dev-libs/ucl/ucl-1.03.ebuild17
2 files changed, 11 insertions, 13 deletions
diff --git a/dev-libs/ucl/ChangeLog b/dev-libs/ucl/ChangeLog
index 893d09f46114..f8dfc3d51c8d 100644
--- a/dev-libs/ucl/ChangeLog
+++ b/dev-libs/ucl/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/ucl
-# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v 1.17 2005/09/10 12:13:49 agriffis Exp $
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v 1.18 2005/09/25 11:12:43 vapier Exp $
+
+ 25 Sep 2005; Mike Frysinger <vapier@gentoo.org> ucl-1.03.ebuild:
+ Cleanup ebuild and enable shared libraries #52271.
10 Sep 2005; Aron Griffis <agriffis@gentoo.org> ucl-1.02.ebuild:
Mark 1.02 stable on alpha
diff --git a/dev-libs/ucl/ucl-1.03.ebuild b/dev-libs/ucl/ucl-1.03.ebuild
index 8d6f44b761a4..aa2fe5c980e6 100644
--- a/dev-libs/ucl/ucl-1.03.ebuild
+++ b/dev-libs/ucl/ucl-1.03.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild,v 1.3 2005/05/12 23:38:29 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild,v 1.4 2005/09/25 11:12:43 vapier Exp $
inherit flag-o-matic eutils
@@ -10,21 +10,16 @@ SRC_URI="http://www.oberhumer.com/opensource/ucl/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ppc64 ~ia64"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
src_compile() {
epunt_cxx #76771
-
- # Doing this b/c UCL will be included in the kernel
- # at some point, and will be fixed properly then
- # besides, this is lu_zero's build
- append-flags -fPIC
-
- econf || die
- emake CFLAGS_O= || die
+ econf --enable-shared || die
+ emake || die
}
src_install() {
- make install DESTDIR=${D} || die
+ make install DESTDIR="${D}" || die
+ dodoc AUTHORS NEWS README THANKS TODO
}