forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recorder-1.4.5.ebuild
66 lines (52 loc) · 1.21 KB
/
recorder-1.4.5.ebuild
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
PYTHON_DEPEND="2:2.7"
inherit fdo-mime python
DESCRIPTION="A simple GTK+ disc burner"
HOMEPAGE="https://code.google.com/p/recorder/"
SRC_URI="https://recorder.googlecode.com/files/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="dvdr mp3 nls ogg vcd"
LANGS="ar cs es fr it nl pl pt_BR ru sv"
for l in ${LANGS}; do
IUSE="${IUSE} linguas_${l}"
done
DEPEND="nls? ( sys-devel/gettext )"
RDEPEND="${DEPEND}
>=dev-python/pygtk-2
sys-apps/coreutils
virtual/cdrtools
dvdr? ( app-cdr/dvd+rw-tools )
mp3? ( media-sound/mpg123 )
ogg? ( media-sound/vorbis-tools )
vcd? (
app-cdr/cdrdao
media-video/vcdimager
)"
DOCS="CHANGELOG TRANSLATORS"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
python_convert_shebangs 2 recorder
local MY_NLS=""
if use nls; then
for ling in ${LINGUAS}; do
if has $ling ${LANGS}; then
MY_NLS="${MY_NLS} ${ling}"
fi
done
fi
sed -i -e "s:ar cs es fr pt_BR ru it nl:${MY_NLS}:" Makefile || die
}
pkg_postinst() {
fdo-mime_desktop_database_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
}