blob: b67005f1d43a5963b7dd980a0fa11ad4e438cfb2 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/xcdroast/xcdroast-0.98_alpha16.ebuild,v 1.2 2009/03/05 16:04:08 mr_bones_ Exp $
inherit eutils
DESCRIPTION="Lightweight cdrtools front-end for CD and DVD writing"
HOMEPAGE="http://www.xcdroast.org/"
SRC_URI="mirror://sourceforge/xcdroast/${P/_/}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="nls"
RDEPEND=">=x11-libs/gtk+-2
virtual/cdrtools"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${P/_/}
src_unpack() {
unpack ${P/_/}.tar.gz
cd "${S}"
epatch "${FILESDIR}/io_compile.patch"
}
src_compile() {
econf \
$(use_enable nls) \
--enable-gtk2 \
--disable-dependency-tracking || die
make PREFIX=/usr || die
}
src_install() {
make PREFIX=/usr DESTDIR="${D}" install || die
cd "${S}"/doc
dodoc DOCUMENTATION FAQ README* TRANSLATION.HOWTO
# move man pages to /usr/share/man to be LFH compliant
mv "${D}"/usr/man "${D}"/usr/share
# remove extraneous directory
rm "${D}"/usr/etc -rf
insinto /usr/share/icons/hicolor/48x48/apps
newins "${S}"/xpms/xcdricon.xpm xcdroast.xpm
make_desktop_entry xcdroast "X-CD-Roast" xcdroast "AudioVideo;DiscBurning"
}
|