blob: 90b389fae9da626231c4ba9c5e7be85d7008c2b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmpcdecsv7/libmpcdecsv7-1.2.6.ebuild,v 1.9 2009/09/23 18:14:45 armin76 Exp $
EAPI=2
inherit autotools
DESCRIPTION="Musepack SV7 decoding library (transition package)"
HOMEPAGE="http://www.musepack.net"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE=""
src_prepare() {
eautoreconf
}
src_configure() {
econf \
--disable-dependency-tracking \
--enable-shared \
--enable-static
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README
find "${D}" -name '*.la' -delete
}
|