diff options
author | Jon Portnoy <avenj@gentoo.org> | 2004-04-06 16:23:35 +0000 |
---|---|---|
committer | Jon Portnoy <avenj@gentoo.org> | 2004-04-06 16:23:35 +0000 |
commit | 14cd8859bb7cbc822031e690a878e9b8a093d03e (patch) | |
tree | 77599efc949d2414ff014d7c6b7e92de940473d5 /media-gfx/gqview/gqview-1.5.1.ebuild | |
parent | Fix the alpha conditionals to avoid returning from the function before callin... (diff) | |
download | gentoo-2-14cd8859bb7cbc822031e690a878e9b8a093d03e.tar.gz gentoo-2-14cd8859bb7cbc822031e690a878e9b8a093d03e.tar.bz2 gentoo-2-14cd8859bb7cbc822031e690a878e9b8a093d03e.zip |
Version bump. Also updated keywords in old ebuilds
Diffstat (limited to 'media-gfx/gqview/gqview-1.5.1.ebuild')
-rw-r--r-- | media-gfx/gqview/gqview-1.5.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-gfx/gqview/gqview-1.5.1.ebuild b/media-gfx/gqview/gqview-1.5.1.ebuild new file mode 100644 index 000000000000..b6f140a482c3 --- /dev/null +++ b/media-gfx/gqview/gqview-1.5.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gqview/gqview-1.5.1.ebuild,v 1.1 2004/04/06 16:23:35 avenj Exp $ + +DESCRIPTION="A GTK-based image browser" +HOMEPAGE="http://gqview.sourceforge.net/" +SRC_URI="mirror://sourceforge/gqview/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~amd64" +IUSE="nls xinerama" + +DEPEND="media-libs/libpng + >=x11-libs/gtk+-2.2.0" + +RDEPEND="nls? ( sys-devel/gettext )" + +src_compile() { + econf \ + --disable-dependency-tracking \ + `use_enable xinerama` \ + `use_enable nls` || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + + # Don't remove duplicate README, the program looks for it. (bug 30111) + # rm -rf ${D}/usr/share/gqview + dodoc AUTHORS ChangeLog README TODO || die "dodoc failed" +} |