blob: a726bffc3b7e4c71a39d1642114f0743c3f7c1bb (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ben Lutgens <blutgens@sistina.com>
# $Header: /var/cvsroot/gentoo-x86/app-cdr/xcdroast/xcdroast-0.98_alpha9.ebuild,v 1.6 2001/11/17 11:28:28 danarmak Exp $
S=${WORKDIR}/xcdroast-0.98alpha9
DESCRIPTION="Menu based front-end to mkisofs and cdrecord"
SRC_URI="http://www.xcdroast.org/download/${PN}-0.98alpha9.tar.gz"
HOMEPAGE="http://www.xcdroast.org/"
DEPEND=">=dev-libs/glib-1.2.10
>=x11-libs/gtk+-1.2.10-r4
>=media-libs/imlib-1.9.10-r1
>=media-libs/giflib-3.0"
RDEPEND=">=app-cdr/cdrtools-1.10"
src_compile () {
make PREFIX=/usr CC="gcc ${CFLAGS}" || die
}
src_install () {
make PREFIX=/usr DESTDIR=${D} install || die
chown root.wheel ${D}/usr/bin/xcdrgtk
dodoc CHANGELOG COPYING DOCUMENTATION FAQ README* TRANSLATION.HOWTO
}
|