summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-03-06 16:10:57 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-03-06 16:10:57 +0000
commit90b866d42497e058b5f9b055ea80748401c95e32 (patch)
treed54c0d5ff380d5c4bd06b0edae4f592bc5bdd00d /media-libs/libmusepack
parentUse mirror://gentoo/ for patchsets. Fix spacing. (diff)
downloadgentoo-2-90b866d42497e058b5f9b055ea80748401c95e32.tar.gz
gentoo-2-90b866d42497e058b5f9b055ea80748401c95e32.tar.bz2
gentoo-2-90b866d42497e058b5f9b055ea80748401c95e32.zip
Drop virtual/libc dependency on 1.0 version. Make use of autotools eclass in 1.1 and drop static useflag, leave to libtool decide what to build (usually both static and shared library).
(Portage version: 2.1_pre5-r4)
Diffstat (limited to 'media-libs/libmusepack')
-rw-r--r--media-libs/libmusepack/ChangeLog10
-rw-r--r--media-libs/libmusepack/libmusepack-1.0.3.ebuild6
-rw-r--r--media-libs/libmusepack/libmusepack-1.1-r1.ebuild21
3 files changed, 20 insertions, 17 deletions
diff --git a/media-libs/libmusepack/ChangeLog b/media-libs/libmusepack/ChangeLog
index 0bf750c74508..26fdbd5f0dec 100644
--- a/media-libs/libmusepack/ChangeLog
+++ b/media-libs/libmusepack/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-libs/libmusepack
-# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libmusepack/ChangeLog,v 1.13 2005/09/16 22:59:43 ciaranm Exp $
+# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmusepack/ChangeLog,v 1.14 2006/03/06 16:10:57 flameeyes Exp $
+
+ 06 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
+ libmusepack-1.0.3.ebuild, libmusepack-1.1-r1.ebuild:
+ Drop virtual/libc dependency on 1.0 version. Make use of autotools eclass in
+ 1.1 and drop static useflag, leave to libtool decide what to build (usually
+ both static and shared library).
16 Sep 2005; Ciaran McCreesh <ciaranm@gentoo.org> ChangeLog:
Converted to UTF-8, fixed encoding screwups
diff --git a/media-libs/libmusepack/libmusepack-1.0.3.ebuild b/media-libs/libmusepack/libmusepack-1.0.3.ebuild
index a00e4214e4df..ad4c9ab6b18a 100644
--- a/media-libs/libmusepack/libmusepack-1.0.3.ebuild
+++ b/media-libs/libmusepack/libmusepack-1.0.3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libmusepack/libmusepack-1.0.3.ebuild,v 1.3 2005/01/29 21:29:50 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmusepack/libmusepack-1.0.3.ebuild,v 1.4 2006/03/06 16:10:57 flameeyes Exp $
IUSE=""
@@ -12,8 +12,6 @@ LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86"
-DEPEND="virtual/libc"
-
src_install() {
make DESTDIR="${D}" install || die
dodoc README
diff --git a/media-libs/libmusepack/libmusepack-1.1-r1.ebuild b/media-libs/libmusepack/libmusepack-1.1-r1.ebuild
index afd3baa30c5b..e1045a4a8bd9 100644
--- a/media-libs/libmusepack/libmusepack-1.1-r1.ebuild
+++ b/media-libs/libmusepack/libmusepack-1.1-r1.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libmusepack/libmusepack-1.1-r1.ebuild,v 1.3 2005/07/04 20:10:26 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmusepack/libmusepack-1.1-r1.ebuild,v 1.4 2006/03/06 16:10:57 flameeyes Exp $
+
+inherit autotools
DESCRIPTION="Musepack decoder library"
HOMEPAGE="http://www.musepack.net"
@@ -9,16 +11,13 @@ SRC_URI="http://files.musepack.net/source/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86"
-IUSE="static"
+IUSE=""
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
-src_compile() {
- ebegin "Rebuilding configure scripts"
- WANT_AUTOMAKE=1.7 ./autogen.sh > /dev/null
- eend
- econf \
- $(use_enable static) \
- $(use_enable !static shared) || die "econf failed"
- emake || die "emake failed"
+ eautoreconf
}
src_install() {