blob: 8af4a57c9fec4e0e891e55f080abad0a752694ff (
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
|
# Copyright 1999-2002 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-1.0.2.ebuild,v 1.12 2002/12/09 04:17:36 manson Exp $
DESCRIPTION="File Roller is an archive manager for the GNOME environment."
SRC_URI="mirror://sourceforge/${PN/-/}/${P}.tar.gz"
HOMEPAGE="http://fileroller.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc "
IUSE="nls"
DEPEND="=x11-libs/gtk+-1.2*
>=gnome-base/gnome-libs-1.4.1.4
=gnome-base/gnome-vfs-1*
=gnome-base/libglade-0*
>=gnome-base/oaf-0.6.8
>=gnome-base/bonobo-1.0.19
>=media-libs/gdk-pixbuf-0.16.0"
RDEPEND="${DEPEND}
nls? ( dev-util/intltool )"
src_compile() {
local myconf=""
use nls || myconf="--disable-nls"
econf ${myconf}
emake || die
}
src_install() {
einstall
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
}
|