blob: f4df12f18722f0a2e19af2b02b84b451e02320e0 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Jonathan Gonzalez <ciberscroll@uole.com>
# $Header: /var/cvsroot/gentoo-x86/media-sound/ripperx/ripperx-2.3.ebuild,v 1.2 2002/05/23 06:50:14 seemant Exp $
PN=ripperX
A=${PN}-${PV}.tar.gz
S=${WORKDIR}/${PN}-${PV}
DESCRIPTION="RipperX is a program to rip CD and enconde mp3s"
HOMEPAGE="http://ripperx.sf.net/"
SRC_URI="http://telia.dl.sourceforge.net/ripperx/${A}"
DEPEND="=x11-libs/gtk+-1.2*
media-sound/lame
media-sound/cdparanoia
media-libs/id3lib"
src_unpack () {
unpack ${A}
}
src_compile () {
cd ${S}
./configure
emake || die
}
src_install () {
cd ${S}/src
into /usr
dobin ripperX
cd ${S}/plugins
into /usr
dobin ripperX_plugin-8hz-mp3 ripperX_plugin-bladeenc \
ripperX_plugin-cdparanoia ripperX_plugin-encode ripperX_plugin-gogo \
ripperX_plugin-l3enc ripperX_plugin-lame ripperX_plugin-mp3enc \
ripperX_plugin-oggenc ripperX_plugin-xingmp3enc ripperX_plugin_tester
}
|