blob: 416a74e9e444c62f962b0a4930b9ee5807ee4e5c (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg321/mpg321-0.2.10-r1.ebuild,v 1.2 2002/07/11 06:30:41 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Free MP3 player, drop-in replacement for mpg123"
SRC_URI="http://unc.dl.sourceforge.net/sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://sourceforge.net/projects/mpg321/"
DEPEND="virtual/glibc
>=media-sound/mad-0.14.2b
>=media-libs/libao-0.8.0"
SLOT="0"
LICENSE="GPL-2"
MPG123="false"
pkg_setup() {
# test if mpg123 owns the /usr/bin/mpg123 file. If it does, then do not
# create a symlink. If it is already a symlink or does not exist, then
# we create it
if [ -f /usr/bin/mpg123 ]
then
if [ -L /usr/bin/mpg123 ]
then
MPEG123="false"
else
MPEG123="true"
fi
else
MPEG123="false"
fi
}
src_compile() {
local myconf
if [ ${MPEG123} = "true" ]
then
myconf="--disable-mpg123-symlink"
else
myconf="--enable-mpg123-symlink"
fi
einfo ${myconf}
econf ${myconf} || die
emake || die
}
src_install () {
einstall || die
}
|