blob: 2cea8654fba5592f6780069f86cd9e4511e650fd (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrkit/cdrkit-1.0.ebuild,v 1.7 2007/02/12 16:39:09 kloeri Exp $
inherit eutils toolchain-funcs
DESCRIPTION="A suite of programs for recording CDs and DVDs, blanking CD-RW media, creating ISO-9660 filesystem images, extracting audio CD data, and more."
HOMEPAGE="http://cdrkit.org/"
SRC_URI="http://cdrkit.org/releases/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ia64 ppc ppc64 sparc x86"
IUSE=""
DEPEND="virtual/libc
>=dev-util/cmake-2.4
!app-cdr/cdrtools
sys-libs/libcap"
PROVIDE="virtual/cdrtools"
src_compile() {
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_C_COMPILER=$(which $(tc-getCC))
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dosym /usr/bin/wodim /usr/bin/cdrecord
cd ${S}
dodoc ABOUT Changelog FAQ FORK START TODO VERSION
cd ${S}/doc/READMEs
dodoc README*
cd ${S}/doc/wodim
dodoc README*
cd ${S}/doc/cdda2wav
docinto cdda2wav
dodoc FAQ Frontends HOWTOUSE README TODO
cd ${S}/doc/mkisofs
docinto mkisofs
dodoc *
cd ${S}/doc/plattforms/
docinto platforms
dodoc README.{linux,parallel}
cd ${S}
insinto /etc
newins cdrecord/wodim.dfl wodim.conf
cd ${S}
insinto /usr/include/scsilib
doins include/*.h
insinto /usr/include/scsilib/scg
doins include/scg/*.h
}
|