Gentoo Archives: gentoo-commits

From: "Piotr Jaroszynski (peper)" <peper@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/libopensync-plugin-syncml: ChangeLog libopensync-plugin-syncml-9999.ebuild
Date: Mon, 26 Nov 2007 20:25:19
Message-Id: E1IwkW2-0001CE-IN@stork.gentoo.org
1 peper 07/11/26 20:25:14
2
3 Modified: ChangeLog
4 Added: libopensync-plugin-syncml-9999.ebuild
5 Log:
6 Add live svn ebuild.
7 (Portage version: 2.1.4_rc3)
8
9 Revision Changes Path
10 1.6 app-pda/libopensync-plugin-syncml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/libopensync-plugin-syncml/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/libopensync-plugin-syncml/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/libopensync-plugin-syncml/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-syncml/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 28 Mar 2007 20:24:27 -0000 1.5
23 +++ ChangeLog 26 Nov 2007 20:25:13 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-pda/libopensync-plugin-syncml
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-syncml/ChangeLog,v 1.5 2007/03/28 20:24:27 peper Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-syncml/ChangeLog,v 1.6 2007/11/26 20:25:13 peper Exp $
29 +
30 +*libopensync-plugin-syncml-9999 (26 Nov 2007)
31 +
32 + 26 Nov 2007; Piotr JaroszyƄski <peper@g.o>
33 + +libopensync-plugin-syncml-9999.ebuild:
34 + Add live svn ebuild.
35
36 *libopensync-plugin-syncml-0.22 (28 Mar 2007)
37
38
39
40
41 1.1 app-pda/libopensync-plugin-syncml/libopensync-plugin-syncml-9999.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/libopensync-plugin-syncml/libopensync-plugin-syncml-9999.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/libopensync-plugin-syncml/libopensync-plugin-syncml-9999.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libopensync-plugin-syncml-9999.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-syncml/libopensync-plugin-syncml-9999.ebuild,v 1.1 2007/11/26 20:25:13 peper Exp $
51
52 inherit eutils cmake-utils subversion
53
54 DESCRIPTION="OpenSync SyncML Plugin"
55 HOMEPAGE="http://www.opensync.org/"
56 SRC_URI=""
57
58 ESVN_REPO_URI="http://svn.opensync.org/plugins/syncml"
59
60 KEYWORDS="~amd64 ~x86"
61 SLOT="0"
62 LICENSE="LGPL-2.1"
63 IUSE="http obex"
64
65 DEPEND="=app-pda/libopensync-${PV}*
66 >=app-pda/libsyncml-0.4.3"
67 RDEPEND="${DEPEND}"
68
69 pkg_setup() {
70 if ! use obex && ! use http; then
71 eerror "${CATEGORY}/${P} without support for obex nor http is unusable."
72 eerror "Please enable \"obex\" or/and \"http\" USE flags."
73 die "Please enable \"obex\" or/and \"http\" USE flags."
74 fi
75
76 if use obex && ! built_with_use app-pda/libsyncml obex; then
77 eerror "You are trying to build ${CATEGORY}/${P} with the \"obex\""
78 eerror "USE flags, but app-pda/libsyncml was built without"
79 eerror "the \"obex\" USE flag."
80 eerror "Please rebuild app-pda/libsyncml with \"obex\" USE flag."
81 die "Please rebuild app-pda/libsyncml with \"obex\" USE flag."
82 fi
83
84 if use http && ! built_with_use app-pda/libsyncml http; then
85 eerror "You are trying to build ${CATEGORY}/${P} with the \"http\""
86 eerror "USE flags, but app-pda/libsyncml was built without"
87 eerror "the \"http\" USE flag."
88 eerror "Please rebuild app-pda/libsyncml with \"http\" USE flag."
89 die "Please rebuild app-pda/libsyncml with \"http\" USE flag."
90 fi
91 }
92
93 src_compile() {
94 local mycmakeargs="
95 $(cmake-utils_use_enable http HTTP)
96 $(cmake-utils_use_enable obex OBEX)"
97
98 cmake-utils_src_compile
99 }
100
101
102
103 --
104 gentoo-commits@g.o mailing list