Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/libplist: ChangeLog libplist-1.4.ebuild
Date: Tue, 29 Mar 2011 02:30:59
Message-Id: 20110329023048.6929D20057@flycatcher.gentoo.org
1 ssuominen 11/03/29 02:30:48
2
3 Modified: ChangeLog
4 Added: libplist-1.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 app-pda/libplist/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libplist/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libplist/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libplist/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-pda/libplist/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 23 Jul 2010 18:11:42 -0000 1.11
24 +++ ChangeLog 29 Mar 2011 02:30:44 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-pda/libplist
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/ChangeLog,v 1.11 2010/07/23 18:11:42 ssuominen Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/ChangeLog,v 1.12 2011/03/29 02:30:44 ssuominen Exp $
31 +
32 +*libplist-1.4 (29 Mar 2011)
33 +
34 + 29 Mar 2011; Samuli Suominen <ssuominen@g.o> +libplist-1.4.ebuild:
35 + Version bump.
36
37 23 Jul 2010; Samuli Suominen <ssuominen@g.o> libplist-1.3.ebuild:
38 Keyword ~ppc64 wrt #325839.
39
40
41
42 1.1 app-pda/libplist/libplist-1.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libplist/libplist-1.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libplist/libplist-1.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libplist-1.4.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/libplist-1.4.ebuild,v 1.1 2011/03/29 02:30:44 ssuominen Exp $
52
53 EAPI=3
54 PYTHON_DEPEND="python? 2:2.6"
55 inherit cmake-utils multilib python
56
57 DESCRIPTION="Support library to deal with Apple Property Lists (Binary & XML)"
58 HOMEPAGE="http://www.libimobiledevice.org/"
59 SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
60
61 LICENSE="GPL-2 LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc64 ~x86"
64 IUSE="python"
65
66 RDEPEND="dev-libs/glib:2
67 dev-libs/libxml2"
68 DEPEND="${RDEPEND}
69 python? ( dev-lang/swig )"
70
71 RESTRICT="test"
72
73 DOCS="AUTHORS NEWS README"
74
75 pkg_setup() {
76 if use python; then
77 python_set_active_version 2
78 python_pkg_setup
79 fi
80 }
81
82 src_prepare() {
83 sed -i -e 's:-Werror::' swig/CMakeLists.txt || die
84 }
85
86 src_configure() {
87 local mycmakeargs=(
88 -DCMAKE_SKIP_RPATH=ON
89 $(cmake-utils_use_enable python)
90 )
91
92 cmake-utils_src_configure
93 }
94
95 pkg_postinst() {
96 use python && python_mod_optimize plist
97 }
98
99 pkg_postrm() {
100 use python && python_mod_cleanup plist
101 }