diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-11-13 20:11:44 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-11-13 20:11:44 +0000 |
commit | c2450f690d2819cce622d64af6b3953d37343241 (patch) | |
tree | 6cd612edb7eb73a20519e9e07bee2157ea29e8d2 /media-gfx/gliv | |
parent | Ooops, fixed the need() { need localmount } to (diff) | |
download | gentoo-2-c2450f690d2819cce622d64af6b3953d37343241.tar.gz gentoo-2-c2450f690d2819cce622d64af6b3953d37343241.tar.bz2 gentoo-2-c2450f690d2819cce622d64af6b3953d37343241.zip |
new version
Diffstat (limited to 'media-gfx/gliv')
-rw-r--r-- | media-gfx/gliv/files/digest-gliv-1.4 | 1 | ||||
-rw-r--r-- | media-gfx/gliv/gliv-1.4.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/media-gfx/gliv/files/digest-gliv-1.4 b/media-gfx/gliv/files/digest-gliv-1.4 new file mode 100644 index 000000000000..e54491d426ff --- /dev/null +++ b/media-gfx/gliv/files/digest-gliv-1.4 @@ -0,0 +1 @@ +MD5 ae95c12dd608e0f74498c9babd126392 gliv-1.4.tar.bz2 114688 diff --git a/media-gfx/gliv/gliv-1.4.ebuild b/media-gfx/gliv/gliv-1.4.ebuild new file mode 100644 index 000000000000..b348932009a2 --- /dev/null +++ b/media-gfx/gliv/gliv-1.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Your Name <your email> + +S=${WORKDIR}/${P} +DESCRIPTION="An image viewer that uses OpenGL" +SRC_URI="http://gliv.tuxfamily.org/gliv-${PV}.tar.bz2" +HOMEPAGE="http://gliv.tuxfamily.org" + +DEPEND="x11-libs/gtk+ + media-libs/gdk-pixbuf + x11-libs/gtkglarea + virtual/opengl" + +src_compile() { + + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --host=${CHOST} || die + + make || die +} + +src_install () { + + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + install || die + + dodoc COPYING README NEWS THANKS +} + |