Gentoo Archives: gentoo-commits

From: "Nathan Phillip Brink (binki)" <binki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libstrl: ChangeLog libstrl-0.4.ebuild
Date: Thu, 02 Jun 2011 17:22:18
Message-Id: 20110602172206.7107620054@flycatcher.gentoo.org
1 binki 11/06/02 17:22:06
2
3 Modified: ChangeLog
4 Added: libstrl-0.4.ebuild
5 Log:
6 Bump to libstrl-0.4, which now installs docs into /usr/share/doc/ properly.
7
8 (Portage version: 2.2.0_alpha34-r1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 dev-libs/libstrl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libstrl/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 2 Jun 2011 04:08:11 -0000 1.4
24 +++ ChangeLog 2 Jun 2011 17:22:06 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libstrl
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstrl/ChangeLog,v 1.4 2011/06/02 04:08:11 binki Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstrl/ChangeLog,v 1.5 2011/06/02 17:22:06 binki Exp $
30 +
31 +*libstrl-0.4 (02 Jun 2011)
32 +
33 + 02 Jun 2011; Nathan Phillip Brink <binki@g.o> +libstrl-0.4.ebuild:
34 + Bump to libstrl-0.4, which now installs docs into /usr/share/doc/
35 + properly.
36
37 02 Jun 2011; Nathan Phillip Brink <binki@g.o> -libstrl-0.2.ebuild:
38 Drop old libstrl-0.2.
39
40
41
42 1.1 dev-libs/libstrl/libstrl-0.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/libstrl-0.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/libstrl-0.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libstrl-0.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/dev-libs/libstrl/libstrl-0.4.ebuild,v 1.1 2011/06/02 17:22:06 binki Exp $
52
53 EAPI=3
54
55 inherit autotools-utils multilib
56
57 DESCRIPTION="Compat library for functions like strlcpy(), strlcat(), strnlen(), and getline()"
58 HOMEPAGE="http://ohnopub.net/~ohnobinki/libstrl/"
59 SRC_URI="ftp://ohnopub.net/mirror/${P}.tar.bz2"
60
61 LICENSE="LGPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x64-macos"
64 IUSE="doc static-libs test"
65
66 DEPEND="doc? ( app-doc/doxygen )
67 test? ( dev-libs/check )"
68 RDEPEND=""
69
70 src_configure() {
71 local myeconfargs=(
72 $(use_with doc doxygen)
73 $(use_with test check)
74 --docdir="${EPREFIX}"/usr/share/doc/${PF}
75 )
76
77 autotools-utils_src_configure
78 }