blob: 26ffa6792cad3fe33e4248a4f042543bc85cea94 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gtksee/gtksee-0.5.6.ebuild,v 1.5 2004/09/30 18:24:13 mr_bones_ Exp $
DESCRIPTION="A simple but functional image viewer/browser - ACD See alike."
HOMEPAGE="http://gtksee.berlios.de/"
SRC_URI="http://download.berlios.de/gtksee/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~sparc amd64"
IUSE="nls"
DEPEND="=x11-libs/gtk+-1.2*
media-libs/jpeg
media-libs/tiff
>=media-libs/libpng-1.2.1
nls? ( sys-devel/gettext )"
src_compile() {
econf \
--disable-dependency-tracking \
$(use_enable nls) || die
emake || die "emake failed"
}
src_install() {
# broken makefiles that don't support DESTDIR with USE nls (bug #65889)
einstall || die
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
}
|