Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libstrl: metadata.xml ChangeLog libstrl-0.2.ebuild
Date: Tue, 18 Jan 2011 23:54:01
Message-Id: 20110118235351.AA09E20054@flycatcher.gentoo.org
1 hwoarang 11/01/18 23:53:51
2
3 Added: metadata.xml ChangeLog libstrl-0.2.ebuild
4 Log:
5 Moved from sunrise overlay. Thanks to Nathan Phillip Brink (ohnobinki) <ohnobinki@××××××××××××××.net>. Bug #351941
6
7 (Portage version: 2.1.9.31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-libs/libstrl/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>hwoarang@g.o</email>
23 <name>Markos Chandras</name>
24 <description>Proxy maintainer. CC him on bugs</description>
25 </maintainer>
26 <maintainer>
27 <email>ohnobinki@××××××××××××××.net</email>
28 <name>Nathan Phillip Brink</name>
29 <description>Maintainer. Assign bugs to him</description>
30 </maintainer>
31 <longdescription lang="en">
32 </longdescription>
33 </pkgmetadata>
34
35
36
37
38 1.1 dev-libs/libstrl/ChangeLog
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/ChangeLog?rev=1.1&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/ChangeLog?rev=1.1&content-type=text/plain
42
43 Index: ChangeLog
44 ===================================================================
45 # ChangeLog for dev-libs/libstrl
46 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
47 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libstrl/ChangeLog,v 1.1 2011/01/18 23:53:51 hwoarang Exp $
48
49 *libstrl-0.2 (18 Jan 2011)
50
51 18 Jan 2011; Markos Chandras <hwoarang@g.o> +libstrl-0.2.ebuild,
52 +metadata.xml:
53 Moved from sunrise overlay. Thanks to Nathan Phillip Brink (ohnobinki)
54 <ohnobinki@××××××××××××××.net>. Bug #351941
55
56
57
58
59 1.1 dev-libs/libstrl/libstrl-0.2.ebuild
60
61 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/libstrl-0.2.ebuild?rev=1.1&view=markup
62 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstrl/libstrl-0.2.ebuild?rev=1.1&content-type=text/plain
63
64 Index: libstrl-0.2.ebuild
65 ===================================================================
66 # Copyright 1999-2011 Gentoo Foundation
67 # Distributed under the terms of the GNU General Public License v2
68 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libstrl/libstrl-0.2.ebuild,v 1.1 2011/01/18 23:53:51 hwoarang Exp $
69
70 EAPI=3
71
72 inherit autotools-utils multilib
73
74 DESCRIPTION="Compat library for functions like strlcpy(), strlcat(), and strnlen()"
75 HOMEPAGE="http://ohnopub.net/~ohnobinki/libstrl/"
76 SRC_URI="ftp://ohnopub.net/mirror/${P}.tar.bz2"
77
78 LICENSE="LGPL-3"
79 SLOT="0"
80 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x64-macos"
81 IUSE="doc static-libs test"
82
83 DEPEND="doc? ( app-doc/doxygen )
84 test? ( dev-libs/check )"
85 RDEPEND=""
86
87 src_configure() {
88 local myeconfargs=(
89 $(use_with doc doxygen)
90 $(use_with test check)
91 )
92
93 autotools-utils_src_configure
94 }