diff options
author | Mart Raudsepp <leio@gentoo.org> | 2008-10-06 02:48:43 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2008-10-06 02:48:43 +0000 |
commit | 391f74e3cf372e9c9ff765533aa7895c1150e4db (patch) | |
tree | 1094c2c390320bfaaae32cd883a287e09a90f555 /app-arch/file-roller | |
parent | fixing changelog (diff) | |
download | gentoo-2-391f74e3cf372e9c9ff765533aa7895c1150e4db.tar.gz gentoo-2-391f74e3cf372e9c9ff765533aa7895c1150e4db.tar.bz2 gentoo-2-391f74e3cf372e9c9ff765533aa7895c1150e4db.zip |
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
(Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Diffstat (limited to 'app-arch/file-roller')
-rw-r--r-- | app-arch/file-roller/ChangeLog | 10 | ||||
-rw-r--r-- | app-arch/file-roller/file-roller-2.24.0.ebuild | 75 |
2 files changed, 84 insertions, 1 deletions
diff --git a/app-arch/file-roller/ChangeLog b/app-arch/file-roller/ChangeLog index 13f5b78234dc..d00068393981 100644 --- a/app-arch/file-roller/ChangeLog +++ b/app-arch/file-roller/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-arch/file-roller # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/ChangeLog,v 1.241 2008/09/25 14:46:38 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/ChangeLog,v 1.242 2008/10/06 02:48:43 leio Exp $ + +*file-roller-2.24.0 (06 Oct 2008) + + 06 Oct 2008; Mart Raudsepp <leio@gentoo.org> +file-roller-2.24.0.ebuild: + 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 25 Sep 2008; Jeroen Roovers <jer@gentoo.org> file-roller-2.22.4.ebuild: Stable for HPPA (bug #236971). diff --git a/app-arch/file-roller/file-roller-2.24.0.ebuild b/app-arch/file-roller/file-roller-2.24.0.ebuild new file mode 100644 index 000000000000..ff0bef424153 --- /dev/null +++ b/app-arch/file-roller/file-roller-2.24.0.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2008 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.24.0.ebuild,v 1.1 2008/10/06 02:48:43 leio Exp $ + +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/libgnome-2.6 + >=gnome-base/libgnomeui-2.6 + >=gnome-base/libglade-2.4 + >=gnome-base/gconf-2 + 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" + + 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/rpm2cdio/rpm2cdio-file-roller/g" \ + -i src/fr-command-rpm.c || die "sed failed" +} + +src_install() { + gnome2_src_install + dobin "${FILESDIR}/rpm2cpio-file-roller" +} + +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" +} |