blob: 2807b84f39c8156ebed2a2557e0195a74f422f48 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/amp/amp-0.7.6.ebuild,v 1.1 2003/03/09 01:16:54 jje Exp $
DESCRIPTION="AMP - the Audio Mpeg Player"
LICENSE="as-is"
SRC_URI="http://distro.ibiblio.org/pub/Linux/distributions/slackware/slackware_source/ap/amp/${P}.tar.gz"
KEYWORDS='~x86'
SLOT="0"
S=${WORKDIR}/${P}
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
patch -p0 <${FILESDIR}/${P}-gentoo.diff || die
emake || die
}
src_install() {
dobin amp || die
dodoc BUGS CHANGES README TODO doc/*
}
|