Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/pqiv: pqiv-2.2.ebuild ChangeLog
Date: Fri, 20 Jun 2014 08:37:44
Message-Id: 20140620083742.136242004E@flycatcher.gentoo.org
1 radhermit 14/06/20 08:37:41
2
3 Modified: ChangeLog
4 Added: pqiv-2.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.43 media-gfx/pqiv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 4 Feb 2014 05:14:02 -0000 1.42
24 +++ ChangeLog 20 Jun 2014 08:37:41 -0000 1.43
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/pqiv
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.42 2014/02/04 05:14:02 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.43 2014/06/20 08:37:41 radhermit Exp $
30 +
31 +*pqiv-2.2 (20 Jun 2014)
32 +
33 + 20 Jun 2014; Tim Harder <radhermit@g.o> +pqiv-2.2.ebuild:
34 + Version bump.
35
36 *pqiv-2.1.1 (04 Feb 2014)
37
38
39
40
41 1.1 media-gfx/pqiv/pqiv-2.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/pqiv-2.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/pqiv-2.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pqiv-2.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/pqiv-2.2.ebuild,v 1.1 2014/06/20 08:37:41 radhermit Exp $
51
52 EAPI=5
53 inherit linux-info toolchain-funcs
54
55 DESCRIPTION="Modern rewrite of Quick Image Viewer"
56 HOMEPAGE="http://github.com/phillipberndt/pqiv http://www.pberndt.com/Programme/Linux/pqiv/"
57 SRC_URI="https://github.com/phillipberndt/pqiv/archive/${PV}.tar.gz -> ${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="kernel_linux"
63
64 RDEPEND=">=dev-libs/glib-2.8:2
65 >=x11-libs/cairo-1.6
66 x11-libs/gtk+:3"
67 DEPEND="${RDEPEND}
68 virtual/pkgconfig"
69
70 pkg_setup() {
71 if use kernel_linux; then
72 CONFIG_CHECK="~INOTIFY_USER"
73 linux-info_pkg_setup
74 fi
75 }
76
77 src_configure() {
78 ./configure --prefix=/usr --destdir="${D}" || die
79 }
80
81 src_compile() {
82 tc-export CC
83 emake CFLAGS="${CFLAGS}"
84 }
85
86 src_install() {
87 default
88 dodoc README.markdown
89 }