Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libticonv: libticonv-1.1.3.ebuild ChangeLog libticonv-1.1.0.ebuild
Date: Sun, 19 Feb 2012 13:32:38
Message-Id: 20120219133229.54C7A2004B@flycatcher.gentoo.org
1 xarthisius 12/02/19 13:32:29
2
3 Modified: ChangeLog
4 Added: libticonv-1.1.3.ebuild
5 Removed: libticonv-1.1.0.ebuild
6 Log:
7 Version bump, remove .la file, drop old
8
9 (Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.5 sci-libs/libticonv/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libticonv/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libticonv/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libticonv/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libticonv/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 15 Mar 2011 20:56:25 -0000 1.4
25 +++ ChangeLog 19 Feb 2012 13:32:28 -0000 1.5
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-libs/libticonv
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libticonv/ChangeLog,v 1.4 2011/03/15 20:56:25 bicatali Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libticonv/ChangeLog,v 1.5 2012/02/19 13:32:28 xarthisius Exp $
32 +
33 +*libticonv-1.1.3 (19 Feb 2012)
34 +
35 + 19 Feb 2012; Kacper Kowalik <xarthisius@g.o> +libticonv-1.1.3.ebuild,
36 + -libticonv-1.1.0.ebuild:
37 + Version bump, remove .la file, drop old
38
39 *libticonv-1.1.1 (15 Mar 2011)
40
41
42
43
44 1.1 sci-libs/libticonv/libticonv-1.1.3.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libticonv/libticonv-1.1.3.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libticonv/libticonv-1.1.3.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libticonv-1.1.3.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libticonv/libticonv-1.1.3.ebuild,v 1.1 2012/02/19 13:32:28 xarthisius Exp $
54
55 EAPI=4
56
57 inherit multilib
58
59 DESCRIPTION="Charset conversion library for TI calculators"
60 HOMEPAGE="http://lpg.ticalc.org/prj_tilp/"
61 SRC_URI="mirror://sourceforge/tilp/tilp2-linux/${P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="doc iconv static-libs"
67
68 RDEPEND="dev-libs/glib:2"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 DOCS=( AUTHORS LOGO NEWS README ChangeLog docs/api.txt )
73
74 src_configure() {
75 econf \
76 $(use_enable static-libs static) \
77 $(use_enable iconv)
78 }
79
80 src_install() {
81 default
82 if use doc; then
83 dohtml docs/html/*
84 docinto charsets
85 dohtml docs/charsets/*
86 fi
87 use static-libs || rm -f "${D}"/usr/$(get_libdir)/${PN}.la
88 }