blob: 841a0a79783b664fe6282027df3ff9e3db6a797a (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/file-roller-2.4.4-r2.ebuild,v 1.7 2004/03/16 02:58:20 geoman Exp $
inherit gnome2
DESCRIPTION="Archive manager for GNOME"
HOMEPAGE="http://fileroller.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc alpha sparc hppa amd64 ia64 ~mips"
RDEPEND=">=dev-libs/glib-2
>=x11-libs/gtk+-2.1
>=gnome-base/libgnome-2.1
>=gnome-base/libgnomeui-2.1
>=gnome-base/gnome-vfs-2.2
>=gnome-base/libglade-2
>=gnome-base/libbonobo-2
>=gnome-base/libbonoboui-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=app-text/scrollkeeper-0.3.11"
DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README TODO"
src_unpack() {
unpack ${A} && cd ${S} || die
# 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}/file-roller-2.4.4-gentoo.patch
# Fix 64-bit problems
epatch ${FILESDIR}/file-roller-2.4.4-64bit.patch
}
|