blob: 6af3a1e860d296e4f4fe79aabe200e2f61db380b (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/yiff/yiff-2.14.5-r1.ebuild,v 1.4 2009/05/10 08:25:16 ssuominen Exp $
EAPI=2
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="high performance and stable sound server for UNIX games and apps"
HOMEPAGE="http://wolfpack.twu.net/YIFF/"
SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="alsa"
RDEPEND="alsa? ( media-libs/alsa-lib )"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-build-2.patch
sed -i -e "/^YLIB_DIR/s:/lib:/$(get_libdir):" \
*/Makefile* || die "sed failed"
}
src_compile() {
tc-export CC CXX
use alsa && append-flags -DALSA_RUN_CONFORM
emake linux || die "emake failed"
}
src_install() {
emake PREFIX="${D}"/usr install || die "emake install failed"
dodoc AUTHORS README
insinto /etc
doins yiff/yiffrc || die "doins failed"
}
|