diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-09 07:53:38 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-09 07:53:38 +0000 |
commit | 0ec700ccd2d3886c2e8ed96272c99c03dfa8adc5 (patch) | |
tree | 012f87fcb5b520c43f7f7eb64bd03261687efc14 /media-gfx | |
parent | Add patch from upstream for mktemp build failures on some systems #288183 by ... (diff) | |
download | gentoo-2-0ec700ccd2d3886c2e8ed96272c99c03dfa8adc5.tar.gz gentoo-2-0ec700ccd2d3886c2e8ed96272c99c03dfa8adc5.tar.bz2 gentoo-2-0ec700ccd2d3886c2e8ed96272c99c03dfa8adc5.zip |
Version bump.
(Portage version: 2.2_rc44/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/pqiv/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/pqiv/pqiv-0.10.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/media-gfx/pqiv/ChangeLog b/media-gfx/pqiv/ChangeLog index c2356ab79609..40a931be112a 100644 --- a/media-gfx/pqiv/ChangeLog +++ b/media-gfx/pqiv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/pqiv # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.21 2009/05/06 10:32:28 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.22 2009/10/09 07:53:38 ssuominen Exp $ + +*pqiv-0.10 (09 Oct 2009) + + 09 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> +pqiv-0.10.ebuild: + Version bump. *pqiv-0.9 (06 May 2009) diff --git a/media-gfx/pqiv/pqiv-0.10.ebuild b/media-gfx/pqiv/pqiv-0.10.ebuild new file mode 100644 index 000000000000..70862e82747a --- /dev/null +++ b/media-gfx/pqiv/pqiv-0.10.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/pqiv-0.10.ebuild,v 1.1 2009/10/09 07:53:38 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 CFLAGS="${LDFLAGS} ${CFLAGS}" || die +} + +src_install() { + emake install || die + dodoc README +} |