blob: c32962679b036047d866ae7bb6ed81780d0ee6c6 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/xmp/xmp-2.0.5_pre3.ebuild,v 1.6 2003/02/13 13:22:01 vapier Exp $
IUSE="xmms arts esd nas X oss alsa"
S="${WORKDIR}/${PN}-2.0.5-pre3"
DESCRIPTION="Extended Module Player"
SRC_URI="mirror://sourceforge/xmp/${PN}-2.0.5pre3.tar.bz2"
HOMEPAGE="http://xmp.sf.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="X? ( virtual/x11 )
esd? ( media-sound/esound )
nas? ( media-libs/nas )
alsa? ( =media-libs/alsa-lib-0.5* )
arts? ( kde-base/arts )
xmms? ( media-sound/xmms )"
src_compile() {
local myconf
use alsa \
&& myconf="${myconf} --enable-alsa" \
|| myconf="${myconf} --disable-alsa"
use arts \
&& myconf="${myconf} --enable-arts" \
|| myconf="${myconf} --disable-arts"
use esd \
&& myconf="${myconf} --enable-esd" \
|| myconf="${myconf} --disable-esd"
use nas \
&& myconf="${myconf} --enable-nas" \
|| myconf="${myconf} --disable-nas"
use oss \
&& myconf="${myconf} --enable-oss" \
|| myconf="${myconf} --disable-oss"
use xmms \
&& myconf="${myconf} --enable-xmms" \
|| myconf="${myconf} --disable-xmms"
use X \
&& myconf="${myconf} --with-x" \
|| myconf="${myconf} --with-x"
econf ${myconf} || die
make || die
}
src_install () {
make DEST_DIR=${D} MAN_DIR=${D}/usr/share/man/man1 install || die
dodoc INSTALL README
}
|