diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-06-28 20:58:24 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-06-28 20:58:24 +0000 |
commit | ff1dbe7947d0578691912c6e5313df7ae01045de (patch) | |
tree | 007e9a0cc8f87ba1cd79ab01d2aaa85ec6482224 /media-gfx/gliv | |
parent | Added cups pstoraster stuff. (diff) | |
download | gentoo-2-ff1dbe7947d0578691912c6e5313df7ae01045de.tar.gz gentoo-2-ff1dbe7947d0578691912c6e5313df7ae01045de.tar.bz2 gentoo-2-ff1dbe7947d0578691912c6e5313df7ae01045de.zip |
new bugfix version
Diffstat (limited to 'media-gfx/gliv')
-rw-r--r-- | media-gfx/gliv/ChangeLog | 9 | ||||
-rw-r--r-- | media-gfx/gliv/files/digest-gliv-1.5.3 | 1 | ||||
-rw-r--r-- | media-gfx/gliv/gliv-1.5.3.ebuild | 61 |
3 files changed, 70 insertions, 1 deletions
diff --git a/media-gfx/gliv/ChangeLog b/media-gfx/gliv/ChangeLog index 1cbea14dfae2..8d8189018449 100644 --- a/media-gfx/gliv/ChangeLog +++ b/media-gfx/gliv/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-gfx/gliv # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gliv/ChangeLog,v 1.5 2002/06/20 21:27:43 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gliv/ChangeLog,v 1.6 2002/06/28 20:58:24 azarah Exp $ + +*gliv-1.5.3 (28 Jun 2002) + + 28 Jun 2002; Martin Schlemmer <azarah@gentoo.org> gliv-1.5.3.ebuild : + + New version. Resolves bug #4096 thanks to quick responce from the + author/maintainer of gliv :) *gliv-1.5.2 (20 Jun 2002) diff --git a/media-gfx/gliv/files/digest-gliv-1.5.3 b/media-gfx/gliv/files/digest-gliv-1.5.3 new file mode 100644 index 000000000000..d279b93213df --- /dev/null +++ b/media-gfx/gliv/files/digest-gliv-1.5.3 @@ -0,0 +1 @@ +MD5 2adc2fc40fc9a02b6ff178081911250f gliv-1.5.3.tar.bz2 238275 diff --git a/media-gfx/gliv/gliv-1.5.3.ebuild b/media-gfx/gliv/gliv-1.5.3.ebuild new file mode 100644 index 000000000000..1874d7534394 --- /dev/null +++ b/media-gfx/gliv/gliv-1.5.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Martin Schlemmer <azarah@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gliv/gliv-1.5.3.ebuild,v 1.1 2002/06/28 20:58:24 azarah Exp $ + +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" + +# Version 1.5.2 and later of gliv can use gtkglarea-1.99.0 or +# later, but will fail to compile if gtk+-2.0 is present, but +# not >=gtkglarea-1.99.0 +# +# The basic theory here is that we just specify: +# +# DEPEND="x11-libs/gtk+ x11-libs/gtkglarea" +# +# which will pull in whatever versions of both that is +# not masked. We then check in src_compile() what version +# of gtkglarea should be used. +# +# Azarah - 20 Jun 2002 + +DEPEND="x11-libs/gtk+ + media-libs/gdk-pixbuf + x11-libs/gtkglarea + virtual/opengl + >=dev-util/pkgconfig-0.12.0" + + +src_compile() { + + local myconf="" + + # Dont use gtk+-2.0 if ! gtkglarea >= 1.99.0 + if ! (pkg-config gtk+-2.0) || ! (pkg-config gtkgl-2.0) + then + einfo "Using Gtk+-1.2 and GtkGL-1.2" + myconf="${myconf} --disable-gtk2" + else + einfo "Using Gtk+-2.0 and GtkGL-2.0" + fi + + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --host=${CHOST} \ + ${myconf} || die + + emake || die +} + +src_install() { + + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + install || die + + dodoc COPYING README NEWS THANKS +} + |