blob: ff1cdc23f204f7266f1f03939d6c675a31ed8457 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/dvdisaster/dvdisaster-0.66.ebuild,v 1.1 2006/06/17 20:51:47 pylon Exp $
inherit eutils gnome2
DESCRIPTION="Data-protection and recovery tool for DVDs"
HOMEPAGE="http://dvdisaster.berlios.de/"
SRC_URI="http://download.berlios.de/dvdisaster/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~x86"
SLOT="0"
IUSE_LINGUAS="linguas_cs linguas_de linguas_it"
IUSE="${IUSE_LINGUAS} gnome nls"
DEPEND=">=x11-libs/gtk+-2.2
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
RDEPEND=">=x11-libs/gtk+-2.2
nls? ( virtual/libintl )"
src_unpack() {
unpack ${A}
cd "${S}"
# This patch lets dvdisaster work with DVD-ROM booktype discs
epatch ${FILESDIR}/dvd-rom-${PV}.patch || die "patch failed"
}
src_compile() {
local myconf
# use_with won't work
if use nls ; then
myconf="${myconf} --with-nls=yes --localedir=/usr/share/locale"
else
myconf="${myconf} --with-nls=no"
fi
use debug && myconf="${myconf} --debug --with-memdebug=yes"
econf ${myconf} --docdir=/usr/share/doc || die "econf failed"
emake || die "emake failed"
}
src_install() {
local docdir="${D}/usr/share/doc/${PF}"
local mandir="${D}/usr/share/man"
local localedir="${D}/usr/share/locale"
make install \
BINDIR=${D}/usr/bin \
DOCSUBDIR=${docdir} \
MANDIR=${mandir} \
LOCALEDIR=${localedir} \
|| die "make install failed"
insinto /usr/share/pixmaps
newins contrib/${PN}48.png ${PN}.png
for res in 16 32 48 64 ; do
insinto /usr/share/icons/hicolor/${res}x${res}/apps/
newins contrib/${PN}${res}.png ${PN}.png
done
sed -i -e "s:48::" ${S}/contrib/${PN}.desktop || die "sed failed"
insinto /usr/share/applications
doins contrib/${PN}.desktop
# no sane way to disable unwanted LINGUAS at compile time
# there are no Italian docs, only manpage and localization for now
for lang in cs de it ; do
use linguas_${lang} || rm -rf ${docdir}/${lang} ${mandir}/${lang} ${localedir}/${lang}
use linguas_${lang} || rm -f ${docdir}/CREDITS.${lang}
done
rm -f ${D}/usr/bin/*.sh
}
pkg_postinst() {
use gnome && gnome2_pkg_postinst
}
pkg_postrm() {
use gnome && gnome2_pkg_postrm
}
|