blob: 870c0c6115ed0f2aaff49e785bed131e27d7dd22 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/graveman/graveman-0.3.10.ebuild,v 1.2 2005/05/11 06:14:23 dertobi123 Exp $
inherit gnome2
DESCRIPTION="Graphical frontend for cdrecord, mkisofs, readcd and sox using GTK+2"
HOMEPAGE="http://www.nongnu.org/graveman/"
SRC_URI="http://savannah.nongnu.org/download/${PN}/${PN}-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE="debug doc dvdr flac mad nls oggvorbis sox"
DEPEND=">=x11-libs/gtk+-2.4
>=dev-libs/glib-2.4
>=gnome-base/libglade-2.0
>=dev-util/intltool-0.22
flac? ( >=media-libs/flac-1.1.0 )
nls? ( sys-devel/gettext )
mad? ( >=media-libs/libid3tag-0.15
>=media-libs/libmad-0.15 )
oggvorbis? ( >=media-libs/libogg-1.0
>=media-libs/libvorbis-1.0 )"
RDEPEND="${DEPEND}
>=app-cdr/cdrtools-2.0
>=app-cdr/cdrdao-1.1.9
dvdr? ( >=app-cdr/dvd+rw-tools-5.20 )
sox? ( >=media-sound/sox-12.17.0 )"
G2CONF="${G2CONF} \
$(use_enable flac) \
$(use_enable mad mp3) \
$(use_enable oggvorbis ogg) \
$(use_enable debug)"
DOCS="AUTHORS ChangeLog INSTALL NEWS README* THANKS"
USE_DESTDIR="1"
src_unpack() {
unpack ${A}
cd ${S}
# The Makefile for graveman's manpage does not recognise a path
# differently from the compiled in. Leave out the manpage for now.
sed -i 's:SUBDIRS = m4 src po desktop man:SUBDIRS = m4 src po desktop:g' Makefile.in || die "can't patch Makefile"
}
|