Gentoo Archives: gentoo-commits

From: "Mart Raudsepp (leio)" <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/file-roller: ChangeLog file-roller-2.24.0.ebuild
Date: Mon, 06 Oct 2008 02:49:06
Message-Id: E1Kmg9M-0000EI-67@stork.gentoo.org
1 leio 08/10/06 02:48:44
2
3 Modified: ChangeLog
4 Added: file-roller-2.24.0.ebuild
5 Log:
6 New major version. Not using gnome-vfs anymore, many UI and interaction improvements; support for rzip, multi-volume archive creation, self-extracting zip archive creation, header encryption for rar and 7zip, and more
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.242 app-arch/file-roller/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/file-roller/ChangeLog?rev=1.242&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/file-roller/ChangeLog?rev=1.242&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/file-roller/ChangeLog?r1=1.241&r2=1.242
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/file-roller/ChangeLog,v
19 retrieving revision 1.241
20 retrieving revision 1.242
21 diff -u -r1.241 -r1.242
22 --- ChangeLog 25 Sep 2008 14:46:38 -0000 1.241
23 +++ ChangeLog 6 Oct 2008 02:48:43 -0000 1.242
24 @@ -1,6 +1,14 @@
25 # ChangeLog for app-arch/file-roller
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/ChangeLog,v 1.241 2008/09/25 14:46:38 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/ChangeLog,v 1.242 2008/10/06 02:48:43 leio Exp $
29 +
30 +*file-roller-2.24.0 (06 Oct 2008)
31 +
32 + 06 Oct 2008; Mart Raudsepp <leio@g.o> +file-roller-2.24.0.ebuild:
33 + New major version. Not using gnome-vfs anymore, many UI and interaction
34 + improvements; support for rzip, multi-volume archive creation,
35 + self-extracting zip archive creation, header encryption for rar and 7zip,
36 + and more
37
38 25 Sep 2008; Jeroen Roovers <jer@g.o> file-roller-2.22.4.ebuild:
39 Stable for HPPA (bug #236971).
40
41
42
43 1.1 app-arch/file-roller/file-roller-2.24.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/file-roller/file-roller-2.24.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/file-roller/file-roller-2.24.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: file-roller-2.24.0.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/file-roller-2.24.0.ebuild,v 1.1 2008/10/06 02:48:43 leio Exp $
53
54 inherit eutils gnome2
55
56 DESCRIPTION="archive manager for GNOME"
57 HOMEPAGE="http://fileroller.sourceforge.net/"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
62 IUSE="nautilus"
63
64 RDEPEND=">=dev-libs/glib-2.16.0
65 >=x11-libs/gtk+-2.13
66 >=gnome-base/libgnome-2.6
67 >=gnome-base/libgnomeui-2.6
68 >=gnome-base/libglade-2.4
69 >=gnome-base/gconf-2
70 nautilus? ( >=gnome-base/nautilus-2.22.2 )"
71 DEPEND="${RDEPEND}
72 gnome-base/gnome-common
73 sys-devel/gettext
74 >=dev-util/intltool-0.35
75 >=dev-util/pkgconfig-0.19
76 >=app-text/gnome-doc-utils-0.3.2"
77
78 DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README TODO"
79
80 pkg_setup() {
81 G2CONF="${G2CONF} --disable-scrollkeeper"
82
83 if ! use nautilus ; then
84 G2CONF="${G2CONF} --disable-nautilus-actions"
85 fi
86 }
87
88 src_unpack() {
89 gnome2_src_unpack
90
91 # Use absolute path to GNU tar since star doesn't have the same
92 # options. On Gentoo, star is /usr/bin/tar, GNU tar is /bin/tar
93 epatch "${FILESDIR}"/${PN}-2.10.3-use_bin_tar.patch
94
95 # use a local rpm2cpio script to avoid the dep
96 sed -e "s/rpm2cdio/rpm2cdio-file-roller/g" \
97 -i src/fr-command-rpm.c || die "sed failed"
98 }
99
100 src_install() {
101 gnome2_src_install
102 dobin "${FILESDIR}/rpm2cpio-file-roller"
103 }
104
105 pkg_postinst() {
106 elog "${PN} is a frontend for several archiving utilities. If you want a"
107 elog "particular achive format support, see ${HOMEPAGE}"
108 elog "and install the relevant package."
109 elog
110 elog "for example:"
111 elog " 7-zip - app-arch/p7zip"
112 elog " ace - app-arch/unace"
113 elog " arj - app-arch/arj"
114 elog " lzma - app-arch/lzma"
115 elog " lzop - app-arch/lzop"
116 elog " cpio - app-arch/cpio"
117 elog " iso - app-arch/cdrtools"
118 elog " jar,zip - app-arch/zip and app-arch/unzip"
119 elog " lha - app-arch/lha"
120 elog " rar - app-arch/unrar"
121 elog " rpm - app-arch/rpm"
122 elog " unstuff - app-arch/stuffit"
123 elog " zoo - app-arch/zoo"
124 }