summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2008-12-07 18:35:07 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2008-12-07 18:35:07 +0000
commit694ca5794efa7f413282f69ddf18d1162a21d548 (patch)
tree4d920cd4d422fbb9bc5e2f599f57075cfc44f967 /media-gfx
parentarm/sh love (diff)
downloadgentoo-2-694ca5794efa7f413282f69ddf18d1162a21d548.tar.gz
gentoo-2-694ca5794efa7f413282f69ddf18d1162a21d548.tar.bz2
gentoo-2-694ca5794efa7f413282f69ddf18d1162a21d548.zip
Version bump wrt #250205, thanks to Phillip Berndt for applying our asneeded patch.
(Portage version: 2.1.6_rc3/cvs/Linux 2.6.27.7 i686)
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/pqiv/ChangeLog8
-rw-r--r--media-gfx/pqiv/pqiv-0.8.ebuild34
2 files changed, 41 insertions, 1 deletions
diff --git a/media-gfx/pqiv/ChangeLog b/media-gfx/pqiv/ChangeLog
index b3885233c8de..0594373d4a73 100644
--- a/media-gfx/pqiv/ChangeLog
+++ b/media-gfx/pqiv/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-gfx/pqiv
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.15 2008/11/30 18:37:27 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.16 2008/12/07 18:35:07 ssuominen Exp $
+
+*pqiv-0.8 (07 Dec 2008)
+
+ 07 Dec 2008; <ssuominen@gentoo.org> +pqiv-0.8.ebuild:
+ Version bump wrt #250205, thanks to Phillip Berndt for applying our
+ asneeded patch.
30 Nov 2008; <ssuominen@gentoo.org> metadata.xml:
Add Phillip Berndt, upstream and Gentoo user to metadata.xml.
diff --git a/media-gfx/pqiv/pqiv-0.8.ebuild b/media-gfx/pqiv/pqiv-0.8.ebuild
new file mode 100644
index 000000000000..99aa7a026adc
--- /dev/null
+++ b/media-gfx/pqiv/pqiv-0.8.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/pqiv-0.8.ebuild,v 1.1 2008/12/07 18:35:07 ssuominen Exp $
+
+EAPI=2
+
+inherit toolchain-funcs
+
+DESCRIPTION="Modern rewrite of Quick Image Viewer"
+HOMEPAGE="http://www.pberndt.com/Programme/Linux/pqiv"
+SRC_URI="http://www.pberndt.com/raw/Programme/Linux/${PN}/_download/${P}.tbz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=x11-libs/gtk+-2.8"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+src_configure() {
+ ./configure --prefix=/usr --destdir=${D} || die "./configure failed."
+}
+
+src_compile() {
+ tc-export CC
+ emake || die "emake failed."
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed."
+ dodoc README
+}