Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libixion: libixion-9999.ebuild ChangeLog
Date: Sun, 02 Sep 2012 16:50:48
Message-Id: 20120902165038.61F0221000@flycatcher.gentoo.org
1 scarabeus 12/09/02 16:50:38
2
3 Modified: ChangeLog
4 Added: libixion-9999.ebuild
5 Log:
6 Provide also live version
7
8 (Portage version: 2.2.0_alpha123-r1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-libs/libixion/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libixion/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libixion/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libixion/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libixion/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 2 Sep 2012 16:24:27 -0000 1.1
24 +++ ChangeLog 2 Sep 2012 16:50:38 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libixion
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/ChangeLog,v 1.1 2012/09/02 16:24:27 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/ChangeLog,v 1.2 2012/09/02 16:50:38 scarabeus Exp $
30 +
31 +*libixion-9999 (02 Sep 2012)
32 +
33 + 02 Sep 2012; Tomáš Chvátal <scarabeus@g.o> +libixion-9999.ebuild:
34 + Provide also live version
35
36 *libixion-0.3.0 (02 Sep 2012)
37
38 @@ -8,4 +13,3 @@
39 +metadata.xml:
40 Initial commit of this multipurpose library, will be used by orcus in future
41 when it has release.
42 -
43
44
45
46 1.1 dev-libs/libixion/libixion-9999.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libixion/libixion-9999.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libixion/libixion-9999.ebuild?rev=1.1&content-type=text/plain
50
51 Index: libixion-9999.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libixion/libixion-9999.ebuild,v 1.1 2012/09/02 16:50:38 scarabeus Exp $
56
57 EAPI=4
58
59 EGIT_REPO_URI="git://gitorious.org/ixion/ixion.git"
60
61 [[ ${PV} == 9999 ]] && GITECLASS="git-2"
62 inherit autotools ${GITECLASS}
63 unset GITECLASS
64
65 DESCRIPTION="General purpose formula parser & interpreter"
66 HOMEPAGE="http://gitorious.org/ixion/pages/Home"
67 [[ ${PV} == 9999 ]] || SRC_URI="http://kohei.us/files/ixion/src/${P/-/_}.tar.bz2"
68
69 LICENSE="MIT"
70 SLOT="0"
71 [[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86"
72 IUSE="static-libs"
73
74 DEPEND="dev-util/mdds"
75 RDEPEND="${DEPEND}"
76
77 S="${WORKDIR}/${P/-/_}"
78
79 src_prepare() {
80 eautoreconf
81 }
82
83 src_configure() {
84 econf \
85 $(use_enable static-libs static)
86 }
87
88 src_install() {
89 default
90
91 find "${ED}" -name '*.la' -exec rm -f {} +
92 }