summaryrefslogtreecommitdiff
blob: c7c04d77dccfad943192441f05daef6b3b06bdb5 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/gtoaster/gtoaster-1.0_beta6.ebuild,v 1.21 2004/04/06 03:30:32 vapier Exp $

inherit eutils

# Fix so that updating can only be done by 'cp old.ebuild new.ebuild'
MY_P="${P/-}"
MY_P="${MY_P/_b/B}"

DESCRIPTION="GTK+ Frontend for cdrecord"
HOMEPAGE="http://gnometoaster.rulez.org/"
SRC_URI="http://gnometoaster.rulez.org/archive/${MY_P}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc ~amd64"
IUSE="nls esd gnome oss oggvorbis"

DEPEND="=x11-libs/gtk+-1.2*
	gnome? ( >=gnome-base/gnome-libs-1.4.1.2 )
	esd? ( >=media-sound/esound-0.2.22 )
	>=sys-devel/autoconf-2.58"
RDEPEND="=x11-libs/gtk+-1.2*
	>=app-cdr/cdrtools-1.11
	app-cdr/cdrdao
	>=media-sound/sox-12
	virtual/mpg123
	>=media-sound/mp3info-0.8.4
	gnome? ( >=gnome-base/gnome-libs-1.4.1.2 )
	esd? ( >=media-sound/esound-0.2.22 )
	oggvorbis? ( >=media-sound/vorbis-tools-1.0_rc2
		>=media-sound/oggtst-0.0 )"

S=${WORKDIR}/${PN}

src_unpack() {
	unpack ${A} ; cd ${S}
	epatch ${FILESDIR}/scdtosr.diff
	epatch ${FILESDIR}/configure.in.diff
}

src_compile() {
	touch configure
	touch `find . -name \*.m4`
	touch `find . -name \*.in`

	export WANT_AUTOCONF=2.5
	export WANT_AUTOMAKE=1.6

	# Uhh, it loops indefinately otherwise
	cd ${S}
	libtoolize -c -f
	aclocal
	autoheader
	automake -a -c
	autoconf
	#end fix for indefinate loop

	econf \
		--disable-nls \
		`use_with gnome` \
		`use_with gnome orbit` \
		`use_with esd` \
		`use_with oss` \
		|| die
	emake || die "parallel make failed"
}

src_install() {
	einstall || die
	dodoc AUTHORS ChangeLog* INSTALL NEWS README TODO

	# Install icon and .desktop for menu entry
	if use gnome ; then
		insinto /usr/share/pixmaps
		doins ${S}/icons/gtoaster.png
		insinto /usr/share/gnome/apps/Applications
		doins ${FILESDIR}/gtoaster.desktop
	fi
}