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.1.ebuild ChangeLog
Date: Sun, 29 Dec 2013 03:33:28
Message-Id: 20131229033322.D67DA2004B@flycatcher.gentoo.org
1 radhermit 13/12/29 03:33:22
2
3 Modified: ChangeLog
4 Added: pqiv-2.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.40 media-gfx/pqiv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/ChangeLog?rev=1.40&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 24 Dec 2013 12:57:00 -0000 1.39
24 +++ ChangeLog 29 Dec 2013 03:33:22 -0000 1.40
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/pqiv
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.39 2013/12/24 12:57:00 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pqiv/ChangeLog,v 1.40 2013/12/29 03:33:22 radhermit Exp $
30 +
31 +*pqiv-2.1 (29 Dec 2013)
32 +
33 + 29 Dec 2013; Tim Harder <radhermit@g.o> +pqiv-2.1.ebuild:
34 + Version bump.
35
36 24 Dec 2013; Agostino Sarubbo <ago@g.o> pqiv-2.0.ebuild:
37 Stable for x86, wrt bug #493512
38
39
40
41 1.1 media-gfx/pqiv/pqiv-2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/pqiv-2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pqiv/pqiv-2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pqiv-2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.1.ebuild,v 1.1 2013/12/29 03:33:22 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 }