blob: fba32642eac8369d75f517c1e155d9622d4fdb0d (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gqview/gqview-1.3.1.ebuild,v 1.5 2003/09/06 23:56:39 msterret Exp $
IUSE="nls"
S=${WORKDIR}/${P}
DESCRIPTION="A GTK-based image browser"
SRC_URI="mirror://sourceforge/gqview/${P}.tar.gz"
HOMEPAGE="http://gqview.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
DEPEND="media-libs/libpng
>=x11-libs/gtk+-2.0.1"
RDEPEND="nls? ( sys-devel/gettext )"
src_compile() {
local myconf
use nls || myconf="--disable-nls"
econf ${myconf} || die
emake || die
}
src_install() {
einstall GNOME_DATADIR=${D}/usr/share || die
# remove duplicate README, since it gets installed in dodoc
rm -rf ${D}/usr/share/gqview
dodoc AUTHORS COPYING ChangeLog README NEWS TODO
}
|