Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ucommon: ucommon-5.2.2.ebuild ChangeLog
Date: Sun, 08 Apr 2012 18:30:47
Message-Id: 20120408183038.4DDA32004B@flycatcher.gentoo.org
1 maksbotan 12/04/08 18:30:38
2
3 Modified: ChangeLog
4 Added: ucommon-5.2.2.ebuild
5 Log:
6 Bump to 5.2.2, thanks to slepnoga
7
8 (Portage version: 2.1.10.56/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-libs/ucommon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 26 Feb 2012 19:29:12 -0000 1.1
24 +++ ChangeLog 8 Apr 2012 18:30:38 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/ucommon
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ChangeLog,v 1.1 2012/02/26 19:29:12 maksbotan Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ChangeLog,v 1.2 2012/04/08 18:30:38 maksbotan Exp $
30 +
31 +*ucommon-5.2.2 (08 Apr 2012)
32 +
33 + 08 Apr 2012; Maxim Koltsov <maksbotan@g.o> +ucommon-5.2.2.ebuild:
34 + Bump to 5.2.2, thanks to slepnoga
35
36 *ucommon-5.2.1 (26 Feb 2012)
37
38
39
40
41 1.1 dev-libs/ucommon/ucommon-5.2.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ucommon-5.2.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ucommon-5.2.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ucommon-5.2.2.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ucommon-5.2.2.ebuild,v 1.1 2012/04/08 18:30:38 maksbotan Exp $
51
52 EAPI="4"
53
54 inherit autotools-utils
55
56 DESCRIPTION="Portable C++ runtime for threads and sockets"
57 HOMEPAGE="http://www.gnu.org/software/commoncpp"
58 SRC_URI="mirror://gnu/commoncpp/${P}.tar.gz"
59
60 LICENSE="LGPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86 ~amd64-linux"
63 IUSE="doc static-libs socks +cxx debug ssl gnutls"
64
65 RDEPEND="ssl? ( dev-libs/openssl )"
66
67 DEPEND="dev-util/pkgconfig
68 doc? ( app-doc/doxygen )
69 ${RDEPEND}"
70
71 DOCS=(README NEWS SUPPORT ChangeLog AUTHORS)
72 PATCHES=( "${FILESDIR}"/disable_rtf_gen_doxy.patch )
73
74 src_configure() {
75 local myconf=""
76 if ! use ssl && ! use gnutls; then
77 myconf=" --with-sslstack=nossl "
78 fi
79
80 if use ssl; then
81 myconf=" --with-sslstack=ssl "
82 fi
83
84 local myeconfargs=(
85 $(use_enable socks)
86 $(use_enable cxx stdcpp)
87 ${myconf}
88 --enable-atomics
89 --with-pkg-config
90 --enable-posix-timers
91 )
92 autotools-utils_src_configure
93 }
94
95 src_compile() {
96 autotools-utils_src_compile
97 use doc && autotools-utils_src_compile doxy
98 }
99
100 src_install() {
101 autotools-utils_src_install
102 if use doc; then
103 dohtml doc/html/*
104 fi
105 }