blob: 5b2a056085637857e03aa9fe8bb91384eda9fdb0 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/eroaster/eroaster-2.2.0_pre6.ebuild,v 1.9 2004/06/24 21:33:32 agriffis Exp $
inherit eutils
IUSE="xmms encode oggvorbis"
MY_P=${P/_pre/-0.}
DESCRIPTION="A graphical frontend for cdrecord and mkisofs written in gnome-python"
HOMEPAGE="http://eclipt.uni-klu.ac.at/eroaster.php"
SRC_URI="mirror://sourceforge/eroaster/${MY_P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc sparc"
S="${WORKDIR}/${MY_P}"
# cdrecord and mkisofs are needed or configure fails
DEPEND=">=dev-lang/python-2.0
>=dev-python/gnome-python-1.4.2
app-cdr/cdrtools"
# xmms, lame and vorbis-tools are just runtime conveniences
# not a bulild dep.
RDEPEND="${DEPEND}
app-cdr/bchunk
xmms? ( media-sound/xmms )
encode? ( media-sound/lame
media-sound/sox )
oggvorbis? ( media-sound/vorbis-tools )
app-cdr/cdrdao"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.patch
}
src_install() {
einstall \
gnorbadir=${D}/usr/share/eroaster || die
}
|