summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Brinkmann <luckyduck@gentoo.org>2005-05-28 19:52:58 +0000
committerJan Brinkmann <luckyduck@gentoo.org>2005-05-28 19:52:58 +0000
commit9cc19ef40586ea476a48ce9db690e83ce9be27c7 (patch)
tree467adc71afaf5b7188f9129b8725496fc0653bf5 /media-libs/libmusepack
parentFixed more collisions. (diff)
downloadhistorical-9cc19ef40586ea476a48ce9db690e83ce9be27c7.tar.gz
historical-9cc19ef40586ea476a48ce9db690e83ce9be27c7.tar.bz2
historical-9cc19ef40586ea476a48ce9db690e83ce9be27c7.zip
stable on amd64 and x86
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'media-libs/libmusepack')
-rw-r--r--media-libs/libmusepack/ChangeLog6
-rw-r--r--media-libs/libmusepack/Manifest16
-rw-r--r--media-libs/libmusepack/libmusepack-1.1-r1.ebuild13
3 files changed, 20 insertions, 15 deletions
diff --git a/media-libs/libmusepack/ChangeLog b/media-libs/libmusepack/ChangeLog
index c8a9d9f82820..542c35e31910 100644
--- a/media-libs/libmusepack/ChangeLog
+++ b/media-libs/libmusepack/ChangeLog
@@ -1,6 +1,10 @@
# 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.10 2005/02/20 16:21:12 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmusepack/ChangeLog,v 1.11 2005/05/28 19:52:58 luckyduck Exp $
+
+ 28 May 2005; Jan Brinkmann <luckyduck@gentoo.org>
+ libmusepack-1.1-r1.ebuild:
+ stable on amd64 and x86
*libmusepack-1.1-r1 (20 Feb 2005)
diff --git a/media-libs/libmusepack/Manifest b/media-libs/libmusepack/Manifest
index bc37b1bec24f..7ef30b998798 100644
--- a/media-libs/libmusepack/Manifest
+++ b/media-libs/libmusepack/Manifest
@@ -1,16 +1,16 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
-MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158
MD5 c0bc030ee39673549e6ba98ce978123b libmusepack-1.0.3.ebuild 544
-MD5 c2dfc58379c6fa426872191ddfa0cedb ChangeLog 1819
-MD5 ba138241b407ded034c910a627d12ed9 libmusepack-1.1-r1.ebuild 693
-MD5 51b8f6a366771c5e79ab355b15ba9b9c files/digest-libmusepack-1.0.3 70
+MD5 62d4aa75cdd42feadf8be0efeb54ee37 libmusepack-1.1-r1.ebuild 750
+MD5 952e395d194095f512ecbedab5c8051e ChangeLog 1928
+MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158
MD5 d4e0b9147a15f75a6530a8c7a6d45194 files/digest-libmusepack-1.1-r1 68
+MD5 51b8f6a366771c5e79ab355b15ba9b9c files/digest-libmusepack-1.0.3 70
-----BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.0-ecc0.1.6 (GNU/Linux)
+Version: GnuPG v1.4.0 (GNU/Linux)
-iD8DBQFCGLlvp5vW4rUFj5oRAubPAJ9qthZYVzCmPAHnhCRER6kzAi7isACfVkNN
-/tLGkFvmOEdyhSZD00A5twE=
-=kpYh
+iD8DBQFCmMw206ebR+OMO78RApMGAJ42sA3l+4fr5DOMzPJAxIMm0GeTbACeJ79e
+EcKA8Q4mCtnYd0+lD08lOig=
+=j61i
-----END PGP SIGNATURE-----
diff --git a/media-libs/libmusepack/libmusepack-1.1-r1.ebuild b/media-libs/libmusepack/libmusepack-1.1-r1.ebuild
index 1491035683f6..a5408b996ca8 100644
--- a/media-libs/libmusepack/libmusepack-1.1-r1.ebuild
+++ b/media-libs/libmusepack/libmusepack-1.1-r1.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/media-libs/libmusepack/libmusepack-1.1-r1.ebuild,v 1.1 2005/02/20 16:21:12 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libmusepack/libmusepack-1.1-r1.ebuild,v 1.2 2005/05/28 19:52:58 luckyduck Exp $
DESCRIPTION="Musepack decoder library"
HOMEPAGE="http://www.musepack.net"
@@ -8,19 +8,20 @@ SRC_URI="http://files.musepack.net/source/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE="static"
src_compile() {
ebegin "Rebuilding configure scripts"
WANT_AUTOMAKE=1.7 ./autogen.sh > /dev/null
eend
- econf `use_enable static` \
- `use_enable !static shared` || die
- emake || die
+ econf \
+ $(use_enable static) \
+ $(use_enable !static shared) || die "econf failed"
+ emake || die "emake failed"
}
src_install() {
- make DESTDIR="${D}" install || die
+ make DESTDIR="${D}" install || die "make install failed"
dodoc README
}