Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/imageworsener: imageworsener-0.9.6.ebuild ChangeLog
Date: Sun, 01 Jan 2012 12:05:59
Message-Id: 20120101120547.A8FF82004B@flycatcher.gentoo.org
1 sping 12/01/01 12:05:47
2
3 Modified: ChangeLog
4 Added: imageworsener-0.9.6.ebuild
5 Log:
6 media-gfx/imageworsener: 0.9.6
7
8 (Portage version: 2.1.10.43/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 media-gfx/imageworsener/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imageworsener/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imageworsener/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imageworsener/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/imageworsener/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 6 Nov 2011 18:38:12 -0000 1.11
24 +++ ChangeLog 1 Jan 2012 12:05:47 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-gfx/imageworsener
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/imageworsener/ChangeLog,v 1.11 2011/11/06 18:38:12 sping Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/imageworsener/ChangeLog,v 1.12 2012/01/01 12:05:47 sping Exp $
31 +
32 +*imageworsener-0.9.6 (01 Jan 2012)
33 +
34 + 01 Jan 2012; Sebastian Pipping <sping@g.o>
35 + +imageworsener-0.9.6.ebuild:
36 + Bump to 0.9.6, looks trivial
37
38 06 Nov 2011; Sebastian Pipping <sping@g.o> imageworsener-0.9.2.ebuild,
39 imageworsener-0.9.3.ebuild, imageworsener-0.9.4.ebuild:
40
41
42
43 1.1 media-gfx/imageworsener/imageworsener-0.9.6.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imageworsener/imageworsener-0.9.6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/imageworsener/imageworsener-0.9.6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: imageworsener-0.9.6.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-gfx/imageworsener/imageworsener-0.9.6.ebuild,v 1.1 2012/01/01 12:05:47 sping Exp $
53
54 EAPI="2"
55
56 CMAKE_IN_SOURCE_BUILD=1
57 CMAKE_VERBOSE=1
58 inherit eutils cmake-utils
59
60 MY_P="${PN}-src-${PV}"
61 MY_PN="imagew"
62
63 DESCRIPTION="Utility for image scaling and processing"
64 HOMEPAGE="http://entropymine.com/imageworsener/"
65 SRC_URI="http://entropymine.com/${PN}/${MY_P}.tar.gz"
66
67 LICENSE="GPL-3"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="test webp"
71
72 WEBP_DEPEND='>=media-libs/libwebp-0.1.3'
73 DEPEND="media-libs/libpng:0
74 virtual/jpeg
75 webp? ( ${WEBP_DEPEND} )
76 test? ( ${WEBP_DEPEND} )"
77 RDEPEND="${DEPEND}"
78
79 src_prepare() {
80 epatch "${FILESDIR}"/${PN}-0.9.5-webp.patch
81 }
82
83 src_configure() {
84 local webp=0
85 use webp && webp=1
86 use test && webp=1
87 mycmakeargs=( -DIW_SUPPORT_WEBP=${webp} )
88
89 cmake-utils_src_configure
90 }
91
92 src_install() {
93 dobin ${MY_PN} || die "dobin failed."
94 dodoc readme.txt technical.txt changelog.txt || die
95 }
96
97 src_test() {
98 cd "${S}/tests" || die
99 ./runtest "${S}/${MY_PN}"
100 }