summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-07-23 04:33:46 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-07-23 04:33:46 +0000
commit4a64a5e10903c1ccfe54b84d211ff332673c35b6 (patch)
treef010261d2e71e0fb5464ddb2004532cf4a081135 /media-gfx/gliv
parent*** empty log message *** (diff)
downloadhistorical-4a64a5e10903c1ccfe54b84d211ff332673c35b6.tar.gz
historical-4a64a5e10903c1ccfe54b84d211ff332673c35b6.tar.bz2
historical-4a64a5e10903c1ccfe54b84d211ff332673c35b6.zip
repoman'd
Diffstat (limited to 'media-gfx/gliv')
-rw-r--r--media-gfx/gliv/files/digest-gliv-1.5.11
-rw-r--r--media-gfx/gliv/files/digest-gliv-1.5.21
-rw-r--r--media-gfx/gliv/gliv-1.5.1.ebuild41
-rw-r--r--media-gfx/gliv/gliv-1.5.2.ebuild60
-rw-r--r--media-gfx/gliv/gliv-1.5.3.ebuild7
5 files changed, 5 insertions, 105 deletions
diff --git a/media-gfx/gliv/files/digest-gliv-1.5.1 b/media-gfx/gliv/files/digest-gliv-1.5.1
deleted file mode 100644
index 611d27e9211e..000000000000
--- a/media-gfx/gliv/files/digest-gliv-1.5.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 48725573023ae32913e9be82292feab7 gliv-1.5.1.tar.bz2 231877
diff --git a/media-gfx/gliv/files/digest-gliv-1.5.2 b/media-gfx/gliv/files/digest-gliv-1.5.2
deleted file mode 100644
index 60c584f1d884..000000000000
--- a/media-gfx/gliv/files/digest-gliv-1.5.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 6ab41228f5f7ce1a3a0a7299d627341e gliv-1.5.2.tar.bz2 235878
diff --git a/media-gfx/gliv/gliv-1.5.1.ebuild b/media-gfx/gliv/gliv-1.5.1.ebuild
deleted file mode 100644
index 99bfe0ba0045..000000000000
--- a/media-gfx/gliv/gliv-1.5.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gliv/gliv-1.5.1.ebuild,v 1.5 2002/07/11 06:30:27 drobbins 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"
-
-# as from version 1.5.1, it could use gtk+-2.0, but not
-# gtkglarea-1.99.0 yet, thus we have to use gtk-1.2 ...
-# please check this with future versions !!!!
-DEPEND="=x11-libs/gtk+-1.2*
- media-libs/gdk-pixbuf
- <x11-libs/gtkglarea-1.99.0
- virtual/opengl"
-
-
-src_compile() {
-
- local myconf=""
-
- # Dont use gtk+-2.0 until we can use >=gtkglarea-1.99.0
- myconf="${myconf} --disable-gtk2"
-
- ./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
-}
diff --git a/media-gfx/gliv/gliv-1.5.2.ebuild b/media-gfx/gliv/gliv-1.5.2.ebuild
deleted file mode 100644
index 46e0dc585453..000000000000
--- a/media-gfx/gliv/gliv-1.5.2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gliv/gliv-1.5.2.ebuild,v 1.2 2002/07/11 06:30:27 drobbins 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
-}
-
diff --git a/media-gfx/gliv/gliv-1.5.3.ebuild b/media-gfx/gliv/gliv-1.5.3.ebuild
index 5b5b69352885..f1a04c5e9344 100644
--- a/media-gfx/gliv/gliv-1.5.3.ebuild
+++ b/media-gfx/gliv/gliv-1.5.3.ebuild
@@ -1,12 +1,16 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gliv/gliv-1.5.3.ebuild,v 1.2 2002/07/11 06:30:27 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gliv/gliv-1.5.3.ebuild,v 1.3 2002/07/23 04:33:46 seemant 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"
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
+
# 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
@@ -57,4 +61,3 @@ src_install() {
dodoc COPYING README NEWS THANKS
}
-