blob: 764ace62e7231fb70b18127310401a0c6dd64408 (
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/k3b/k3b-0.12.17.ebuild,v 1.3 2006/10/06 10:56:07 deathwing00 Exp $
inherit kde eutils
DESCRIPTION="K3b, KDE CD Writing Software"
HOMEPAGE="http://www.k3b.org/"
SRC_URI="mirror://sourceforge/k3b/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="alsa css dvdr encode ffmpeg flac hal kde mp3 musepack musicbrainz sndfile vcd vorbis"
DEPEND="kde? ( || ( kde-base/kdesu kde-base/kdebase ) )
hal? ( || ( dev-libs/dbus-qt3-old sys-apps/dbus )
sys-apps/hal )
media-libs/libsamplerate
media-libs/taglib
>=media-sound/cdparanoia-3.9.8
sndfile? ( media-libs/libsndfile )
ffmpeg? ( media-video/ffmpeg )
flac? ( media-libs/flac )
mp3? ( media-libs/libmad )
musepack? ( media-libs/libmpcdec )
vorbis? ( media-libs/libvorbis )
musicbrainz? ( media-libs/musicbrainz )
encode? ( media-sound/lame )
alsa? ( media-libs/alsa-lib )"
RDEPEND="${DEPEND}
virtual/cdrtools
>=app-cdr/cdrdao-1.1.7-r3
media-sound/normalize
dvdr? ( app-cdr/dvd+rw-tools )
css? ( media-libs/libdvdcss )
encode? ( media-sound/sox
media-video/transcode )
vcd? ( media-video/vcdimager )"
DEPEND="${DEPEND}
dev-util/pkgconfig"
need-kde 3.4
I18N="${PN}-i18n-${PV}"
# Supported languages and translated documentation
LANGS="af bg bn br bs ca cs cy da de el en_GB es et eu fi fr ga he hi hu is it
ja km lt mk ms nb nds nl nn pa pl pt pt_BR ro ru se sl sr sr@Latn sv ta tr uk
zh_CN zh_TW"
for X in ${LANGS}; do
SRC_URI="${SRC_URI} linguas_${X}? ( mirror://sourceforge/k3b/${I18N}.tar.bz2 )"
IUSE="${IUSE} linguas_${X}"
done
pkg_setup() {
if use hal && has_version '<sys-apps/dbus-0.91' && ! built_with_use sys-apps/dbus qt3; then
eerror "You are trying to compile ${CATEGORY}/${PF} with the \"hal\" USE flag enabled,"
eerror "but sys-apps/dbus is not built with Qt3 support."
die "rebuild sys-apps/dbus with the qt3 useflag"
fi
kde_pkg_setup
}
src_unpack() {
kde_src_unpack
if [ -d "${WORKDIR}/${I18N}" ]; then
cd "${WORKDIR}/${I18N}"
for X in ${LANGS}; do
use linguas_${X} || rm -rf "${X}"
done
rm -f configure
fi
}
src_compile() {
local myconf="--enable-libsuffix= \
--with-external-libsamplerate \
--without-resmgr \
$(use_with kde k3bsetup) \
$(use_with hal) \
$(use_with encode lame) \
$(use_with ffmpeg) \
$(use_with flac) \
$(use_with vorbis oggvorbis) \
$(use_with sndfile) \
$(use_with mp3 libmad) \
$(use_with musepack) \
$(use_with musicbrainz) \
$(use_with alsa)"
# Build process of K3b
kde_src_compile
# Build process of K3b-i18n
if [ -d "${WORKDIR}/${I18N}" ]; then
KDE_S="${WORKDIR}/${I18N}" \
kde_src_compile
fi
}
src_install() {
kde_src_install
dodoc FAQ KNOWNBUGS PERMISSIONS
if [ -d "${WORKDIR}/${I18N}" ]; then
KDE_S="${WORKDIR}/${I18N}" \
kde_src_install
fi
# Move menu entry
if use kde; then
mv ${D}/usr/share/applnk/Settings/System/k3bsetup2.desktop ${D}/usr/share/applications/kde/
fi
rm -fR ${D}/usr/share/applnk/
}
pkg_postinst() {
echo
einfo "Make sure you have proper read/write permissions on the cdrom device(s)."
einfo "Usually, it is sufficient to be in the cdrom group."
echo
}
|