blob: 9b868050ea1ebb0197645ebd2eadc20081ced935 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/file-roller-2.26.1.ebuild,v 1.1 2009/05/02 19:15:31 eva Exp $
GCONF_DEBUG="no"
inherit eutils gnome2
DESCRIPTION="archive manager for GNOME"
HOMEPAGE="http://fileroller.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="nautilus"
RDEPEND=">=dev-libs/glib-2.16.0
>=x11-libs/gtk+-2.13
>=gnome-base/gconf-2.6
nautilus? ( >=gnome-base/nautilus-2.22.2 )"
DEPEND="${RDEPEND}
gnome-base/gnome-common
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/pkgconfig-0.19
>=app-text/gnome-doc-utils-0.3.2"
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README TODO"
pkg_setup() {
G2CONF="${G2CONF}
--disable-scrollkeeper
--disable-run-in-place
--disable-static"
if ! use nautilus ; then
G2CONF="${G2CONF} --disable-nautilus-actions"
fi
}
src_unpack() {
gnome2_src_unpack
# Use absolute path to GNU tar since star doesn't have the same
# options. On Gentoo, star is /usr/bin/tar, GNU tar is /bin/tar
epatch "${FILESDIR}"/${PN}-2.10.3-use_bin_tar.patch
# use a local rpm2cpio script to avoid the dep
sed -e "s/rpm2cpio/rpm2cpio-file-roller/g" \
-i src/fr-command-rpm.c || die "sed failed"
# Fix intltoolize broken file, see upstream #577133 and #579464
sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed failed"
}
src_install() {
gnome2_src_install
dobin "${FILESDIR}/rpm2cpio-file-roller" || die "dobin failed"
}
pkg_postinst() {
elog "${PN} is a frontend for several archiving utilities. If you want a"
elog "particular achive format support, see ${HOMEPAGE}"
elog "and install the relevant package."
elog
elog "for example:"
elog " 7-zip - app-arch/p7zip"
elog " ace - app-arch/unace"
elog " arj - app-arch/arj"
elog " lzma - app-arch/lzma"
elog " lzop - app-arch/lzop"
elog " cpio - app-arch/cpio"
elog " iso - app-arch/cdrtools"
elog " jar,zip - app-arch/zip and app-arch/unzip"
elog " lha - app-arch/lha"
elog " rar - app-arch/unrar"
elog " rpm - app-arch/rpm"
elog " unstuff - app-arch/stuffit"
elog " zoo - app-arch/zoo"
}
|