diff options
-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 +} + |