blob: 481fc24297a7720bc48fa669791da2802351548b (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gliv/gliv-1.8.2.ebuild,v 1.1 2004/04/25 23:23:13 mr_bones_ Exp $
DESCRIPTION="An image viewer that uses OpenGL"
HOMEPAGE="http://guichaz.free.fr/gliv/"
SRC_URI="http://guichaz.free.fr/gliv/gliv-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="nls"
DEPEND=">=x11-libs/gtk+-2.2
virtual/opengl
>=x11-libs/gtkglext-1.0.2
nls? ( sys-devel/gettext )"
src_compile() {
econf \
--disable-dependency-tracking \
$(use_enable nls) || die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README NEWS THANKS
}
|