diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-22 08:34:56 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-22 08:34:56 +0000 |
commit | 497cbc83c18b6eb27f007c41735e165a65ca5c81 (patch) | |
tree | ba42cb2cb10a36ade39b2bcb57078a0a6684a7b6 /media-gfx/pqiv | |
parent | fix DESCRIPTION (diff) | |
download | gentoo-2-497cbc83c18b6eb27f007c41735e165a65ca5c81.tar.gz gentoo-2-497cbc83c18b6eb27f007c41735e165a65ca5c81.tar.bz2 gentoo-2-497cbc83c18b6eb27f007c41735e165a65ca5c81.zip |
Version bump wrt #324913 by Phillip Berndt.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/pqiv')
-rw-r--r-- | media-gfx/pqiv/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/pqiv/pqiv-0.11.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/media-gfx/pqiv/ChangeLog b/media-gfx/pqiv/ChangeLog index 57b53c2998df..0f5ae2c91cea 100644 --- a/media-gfx/pqiv/ChangeLog +++ b/media-gfx/pqiv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/pqiv # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.26 2010/01/05 07:40:57 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.27 2010/06/22 08:34:56 ssuominen Exp $ + +*pqiv-0.11 (22 Jun 2010) + + 22 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> +pqiv-0.11.ebuild: + Version bump wrt #324913 by Phillip Berndt. 05 Jan 2010; Markus Meier <maekke@gentoo.org> -pqiv-0.8.ebuild: old diff --git a/media-gfx/pqiv/pqiv-0.11.ebuild b/media-gfx/pqiv/pqiv-0.11.ebuild new file mode 100644 index 000000000000..6d9e9c15f43c --- /dev/null +++ b/media-gfx/pqiv/pqiv-0.11.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/pqiv-0.11.ebuild,v 1.1 2010/06/22 08:34:56 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:2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + ./configure --prefix=/usr --destdir="${D}" || die +} + +src_compile() { + tc-export CC + emake || die +} + +src_install() { + emake install || die + dodoc README +} |