diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-01-06 02:09:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-01-06 02:09:50 +0000 |
commit | 86dfd9fc157758b507b15d8f84ccd5b7ffa14adc (patch) | |
tree | f11c8a800916991c52838312dfc22e2b694cf4ac /dev-libs/ucl | |
parent | old (diff) | |
download | gentoo-2-86dfd9fc157758b507b15d8f84ccd5b7ffa14adc.tar.gz gentoo-2-86dfd9fc157758b507b15d8f84ccd5b7ffa14adc.tar.bz2 gentoo-2-86dfd9fc157758b507b15d8f84ccd5b7ffa14adc.zip |
Clean up; convert to EAPI=2 and emake.
(Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/ucl')
-rw-r--r-- | dev-libs/ucl/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/ucl/ucl-1.03.ebuild | 19 |
2 files changed, 16 insertions, 10 deletions
diff --git a/dev-libs/ucl/ChangeLog b/dev-libs/ucl/ChangeLog index 939c5769e6e9..8a719e139479 100644 --- a/dev-libs/ucl/ChangeLog +++ b/dev-libs/ucl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/ucl -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v 1.28 2009/10/25 20:18:33 tove Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v 1.29 2011/01/06 02:09:50 vapier Exp $ + + 06 Jan 2011; Mike Frysinger <vapier@gentoo.org> ucl-1.03.ebuild: + Clean up; convert to EAPI=2 and emake. 25 Oct 2009; Torsten Veller <tove@gentoo.org> metadata.xml: Remove drizzt from metadata.xml (#149111) diff --git a/dev-libs/ucl/ucl-1.03.ebuild b/dev-libs/ucl/ucl-1.03.ebuild index d083b85bb5b8..60ac505e2f41 100644 --- a/dev-libs/ucl/ucl-1.03.ebuild +++ b/dev-libs/ucl/ucl-1.03.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 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.8 2009/02/25 12:17:34 drizzt Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild,v 1.9 2011/01/06 02:09:50 vapier Exp $ -inherit flag-o-matic eutils +EAPI="2" +inherit eutils -DESCRIPTION="UCL: The UCL Compression Library" +DESCRIPTION="the UCL Compression Library" HOMEPAGE="http://www.oberhumer.com/opensource/ucl/" SRC_URI="http://www.oberhumer.com/opensource/ucl/download/${P}.tar.gz" @@ -13,13 +14,15 @@ SLOT="0" KEYWORDS="alpha ~amd64 hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd" IUSE="" -src_compile() { - epunt_cxx #76771 +src_prepare() { + epunt_cxx +} + +src_configure() { econf --enable-shared || die - emake || die } src_install() { - make install DESTDIR="${D}" || die + emake install DESTDIR="${D}" || die dodoc AUTHORS NEWS README THANKS TODO } |