blob: cc74a2c6b914c4f8be0fcef207abaa068356254e (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Philippe Namias <pnamias@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3blaster/mp3blaster-3.0_p7.ebuild,v 1.4 2001/11/17 11:28:28 danarmak Exp $
A=${PN}-3.0p7.tar.gz
S=${WORKDIR}/mp3blaster-3.0p7/
DESCRIPTION="MP3 command line player"
SRC_URI="ftp://mud.stack.nl/pub/mp3blaster/${A}"
HOMEPAGE="http://www.stack.nl/~brama/mp3blaster"
DEPEND=">=sys-libs/ncurses-5.2
nas? ( >=media-libs/nas-1.4.1 )
mysql? ( >=dev-db/mysql-3.23.36 )"
src_compile() {
local myconf
if [ "`use nas`" ] ; then
myconf="--with-nas"
fi
if [ "`use mysql`" ] ; then
myconf="$myconf --with-mysql"
fi
try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} ${myconf}
if [ "`use nas`" ] ; then
cd src
cp Makefile Makefile.orig
sed -e "s:^INCLUDES =:INCLUDES = -I/usr/X11R6/include:" \
-e "s:^splay_LDADD =:splay_LDADD = \$(NAS_LIBS):" Makefile.orig > Makefile
cd ..
fi
try make
}
src_install () {
try make DESTDIR=${D} install
dodoc ANNOUNCE AUTHORS COPYING CREDITS ChangeLog FAQ NEWS README TODO
}
|