blob: 46fc1cd7a8630af5eafd17412e5723201f904256 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/gnomebaker/gnomebaker-0.6.1.ebuild,v 1.1 2006/12/03 06:23:42 pylon Exp $
inherit eutils gnome2
DESCRIPTION="GnomeBaker is a GTK2/Gnome cd burning application."
HOMEPAGE="http://gnomebaker.sf.net"
SRC_URI="mirror://sourceforge/gnomebaker/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE="dvdr nls mp3 flac vorbis"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
DEPEND=">=gnome-base/libglade-2.0
>=gnome-base/libgnomeui-2.10
>=media-libs/gstreamer-0.10.0
app-text/scrollkeeper"
RDEPEND="${DEPEND}
dvdr? ( app-cdr/dvd+rw-tools )
mp3? ( >=media-plugins/gst-plugins-mad-0.10.0 )
vorbis? ( >=media-plugins/gst-plugins-vorbis-0.10.0
>=media-libs/libogg-1.1.2 )
flac? ( >=media-plugins/gst-plugins-flac-0.10.0 )
app-cdr/cdrdao
virtual/cdrtools"
src_unpack() {
unpack ${A}
cd ${S}
gnome2_omf_fix
}
src_install() {
gnome2_src_install \
gnomebakerdocdir=/usr/share/doc/${P} \
docdir=/usr/share/gnome/help/${PN}/C \
gnomemenudir=/usr/share/applications
rm -rf ${D}/usr/share/doc/${P}/*.make ${D}/var
use nls || rm -rf ${D}/usr/share/locale
}
|