blob: 11ab5808f058053a72a6b34bf4f1e4e489e01172 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-0.4.ebuild,v 1.7 2009/09/08 12:14:03 nixphoeni Exp $
EAPI=2
inherit eutils toolchain-funcs
DESCRIPTION="Digital vinyl emulation software"
HOMEPAGE="http://www.xwax.co.uk/"
SRC_URI="http://www.xwax.co.uk/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="alsa"
RDEPEND="media-libs/libsdl
media-libs/sdl-ttf
media-fonts/ttf-bitstream-vera
alsa? ( media-libs/alsa-lib )"
DEPEND="${RDEPEND}"
src_prepare() {
# Fix fonts directory in source
epatch "${FILESDIR}/${P}-fonts.patch"
# Remove the 'CFLAGS += -Wall -03' line from Makefile
# Add LDFLAGS to Makefile
sed -i -e 's:\(^CFLAGS.*\)-O[0-9]\(.*\):\1\2:' \
-e 's:\($(CC) .* $(DEVICE_LIBS)\):\1 $(LDFLAGS):' \
Makefile || die "sed failed"
}
src_configure() {
tc-export CC
econf \
$(use_enable alsa)
}
src_install() {
dobin xwax xwax_import || die
dodoc README || die
}
|