blob: 350ba68c8074a76279ce3b225c0bb38700f42095 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-shell/xmms-shell-0.99.0-r1.ebuild,v 1.4 2002/10/05 05:39:15 drobbins Exp $
IUSE="readline"
S=${WORKDIR}/${P}
DESCRIPTION="XMMS-Shell is a simple utility to control XMMS externally."
SRC_URI="http://download.sourceforge.net/xmms-shell/${P}.tar.gz"
HOMEPAGE="http://www.loganh.com/xmms-shell/"
DEPEND=">=media-sound/xmms-1.2.7
readline? ( >=sys-libs/readline-4.1 )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
src_unpack() {
unpack ${A}
# shall be sent upstream
patch -p0 <${FILESDIR}/${PN}-gcc3.patch
}
src_compile() {
local myconf
use readline \
&& myconf="${myconf} --with-readline" \
|| myconf="${myconf} --without-readline"
econf ${myconf} || die "./configure failed"
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS README
}
|