Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/pornview: pornview-0.2.1.ebuild ChangeLog
Date: Wed, 31 Oct 2012 19:09:02
Message-Id: 20121031190840.432E921600@flycatcher.gentoo.org
1 hasufell 12/10/31 19:08:40
2
3 Modified: ChangeLog
4 Added: pornview-0.2.1.ebuild
5 Log:
6 version bump, fixes bug 440358
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.49 media-gfx/pornview/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pornview/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pornview/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pornview/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/pornview/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 28 Oct 2012 22:06:24 -0000 1.48
24 +++ ChangeLog 31 Oct 2012 19:08:40 -0000 1.49
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/pornview
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pornview/ChangeLog,v 1.48 2012/10/28 22:06:24 hasufell Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pornview/ChangeLog,v 1.49 2012/10/31 19:08:40 hasufell Exp $
30 +
31 +*pornview-0.2.1 (31 Oct 2012)
32 +
33 + 31 Oct 2012; Julian Ospald <hasufell@g.o> +pornview-0.2.1.ebuild:
34 + version bump, fixes bug 440358
35
36 28 Oct 2012; Julian Ospald <hasufell@g.o>
37 pornview-0.2.0_pre1-r2.ebuild, +files/pornview-0.2.0_pre1-autoconf.patch,
38
39
40
41 1.1 media-gfx/pornview/pornview-0.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pornview/pornview-0.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pornview/pornview-0.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pornview-0.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-gfx/pornview/pornview-0.2.1.ebuild,v 1.1 2012/10/31 19:08:39 hasufell Exp $
51
52 EAPI=4
53 inherit gnome2-utils
54
55 DESCRIPTION="Image viewer/manager with optional support for MPEG movies"
56 HOMEPAGE="http://pornview.sourceforge.net"
57 SRC_URI="mirror://github/gentoo/${PN}/${P}.tar.xz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 -hppa ~ppc ~x86"
62 IUSE="exif nls"
63
64 RDEPEND="
65 dev-libs/glib:2
66 media-libs/libpng:0
67 virtual/jpeg
68 x11-libs/gdk-pixbuf:2
69 x11-libs/gtk+:2
70 x11-libs/libX11
71 exif? ( media-gfx/exiv2 )"
72 DEPEND="${RDEPEND}
73 virtual/pkgconfig
74 nls? ( sys-devel/gettext )"
75
76 src_configure() {
77 econf \
78 $(use_enable exif) \
79 $(use_enable nls)
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" desktopdir="/usr/share/applications" \
84 install || die "emake install failed."
85 dodoc AUTHORS NEWS README
86 }
87
88 pkg_preinst() {
89 gnome2_icon_savelist
90 }
91
92 pkg_postinst() {
93 gnome2_icon_cache_update
94 }
95
96 pkg_postrm() {
97 gnome2_icon_cache_update
98 }