blob: 75ff733971bce0a49daff7d3c822737ad3a7031a (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmikmod/libmikmod-3.2.0_beta2-r1.ebuild,v 1.8 2010/01/31 00:19:20 maekke Exp $
EAPI=2
MY_P=${P/_/-}
inherit autotools eutils
DESCRIPTION="A library to play a wide range of module formats"
HOMEPAGE="http://mikmod.raphnet.net/"
SRC_URI="http://mikmod.raphnet.net/files/${MY_P}.tar.gz"
LICENSE="|| ( LGPL-2.1 LGPL-2 )"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
# Enable OSS by default since ALSA support isn't available, look below
IUSE="+oss"
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch "${FILESDIR}"/${P}-64bit.patch \
"${FILESDIR}"/${P}-autotools.patch \
"${FILESDIR}"/${P}-info.patch \
"${FILESDIR}"/${P}-doubleRegister.patch \
"${FILESDIR}"/${PN}-CVE-2007-6720.patch \
"${FILESDIR}"/${PN}-CVE-2009-0179.patch
AT_M4DIR=${S} eautoreconf
}
src_configure() {
# * af is something called AF/AFlib.h and -lAF, not audiofile in tree
# * alsa support is for deprecated API and doesn't work
econf \
--disable-af \
--disable-alsa \
--disable-esd \
$(use_enable oss)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS NEWS README TODO
dohtml docs/*.html
}
|