blob: 2f28346f30316468d43332c0d11afb61b25ccdc0 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999 - 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrdao/cdrdao-1.1.5-r1.ebuild,v 1.7 2002/07/11 06:30:10 drobbins Exp $
S=${WORKDIR}/cdrdao-1.1.5
DESCRIPTION="Burn CDs in disk-at-once mode -- with optional GUI frontend"
SRC_URI="http://download.sourceforge.net/${PN}/${P}.src.tar.gz"
HOMEPAGE="http://cdrdao.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
RDEPEND="gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1
>=x11-libs/gtkmm-1.2.5-r1
>=gnome-extra/gnomemm-1.1.17 )"
DEPEND=">=dev-util/pccts-1.33.24-r1
${RDEPEND}"
src_unpack() {
unpack ${A}
patch -p0 <${FILESDIR}/${P}-c++.patch || die
if [ ! "`use gnome`" ] ; then
patch -p0 <${FILESDIR}/${P}-gentoo.diff || die
fi
}
src_compile() {
local mygnome=""
if [ "`use gnome`" ] ; then
mygnome=" --with-gnome"
fi
# -funroll-loops do not work
CFLAGS="${CFLAGS/-funroll-loops}"
./configure "${mygnome}" \
--prefix=/usr \
--build="${CHOST}"\
--host="${CHOST}"
emake || die
}
src_install() {
# cdrdao gets definitely installed
# binary
dobin dao/cdrdao
# data of cdrdao in /usr/share/cdrdao/
# (right now only driverlist)
insinto /usr/share/cdrdao
newins dao/cdrdao.drivers drivers
# man page
into /usr
newman dao/cdrdao.man cdrdao.1
# documentation
docinto ""
dodoc COPYING CREDITS INSTALL README* Release*
# and now the optional GNOME frontend
if [ "`use gnome`" ]
then
# binary
into /usr
dobin xdao/gcdmaster
# pixmaps for gcdmaster in /usr/share/pixmaps/gcdmaster
insinto /usr/share/pixmaps/gcdmaster
doins xdao/pixmap_copycd.png
doins xdao/pixmap_audiocd.png
doins xdao/pixmap_datacd.png
doins xdao/pixmap_open.png
doins xdao/pixmap_mixedcd.png
doins xdao/pixmap_cd.png
doins xdao/pixmap_help.png
doins xdao/pixmap_dumpcd.png
doins xdao/gcdmaster.png
# application links
# gcdmaster.desktop in /usr/share/gnome/apps/Applications
insinto /usr/share/gnome/apps/Applications
doins xdao/gcdmaster.desktop
# xcdrdao.1 renamed to gcdmaster.1 in /usr/share/man/man1/
into /usr
newman xdao/xcdrdao.man gcdmaster.1
fi
}
|