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-6.0.3.ebuild ChangeLog
Date: Wed, 26 Dec 2012 16:32:42
Message-Id: 20121226163214.827412171D@flycatcher.gentoo.org
1 maksbotan 12/12/26 16:32:14
2
3 Modified: ChangeLog
4 Added: ucommon-6.0.3.ebuild
5 Log:
6 Bumped to 6.0.3, thanks to slepnoga
7
8 (Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
9
10 Revision Changes Path
11 1.15 dev-libs/ucommon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 26 Nov 2012 18:05:54 -0000 1.14
24 +++ ChangeLog 26 Dec 2012 16:32:14 -0000 1.15
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.14 2012/11/26 18:05:54 maksbotan Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ChangeLog,v 1.15 2012/12/26 16:32:14 maksbotan Exp $
30 +
31 +*ucommon-6.0.3 (26 Dec 2012)
32 +
33 + 26 Dec 2012; Maxim Koltsov <maksbotan@g.o> +ucommon-6.0.3.ebuild:
34 + Bumped to 6.0.3, thanks to slepnoga
35
36 *ucommon-5.5.0 (26 Nov 2012)
37 *ucommon-6.0.0 (26 Nov 2012)
38
39
40
41 1.1 dev-libs/ucommon/ucommon-6.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ucommon-6.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ucommon-6.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ucommon-6.0.3.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-6.0.3.ebuild,v 1.1 2012/12/26 16:32:14 maksbotan Exp $
51
52 EAPI="4"
53
54 AUTOTOOLS_AUTORECONF=1
55
56 inherit autotools-utils eutils
57
58 DESCRIPTION="Portable C++ runtime for threads and sockets"
59 HOMEPAGE="http://www.gnu.org/software/commoncpp"
60 SRC_URI="mirror://gnu/commoncpp/${P}.tar.gz"
61
62 LICENSE="LGPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux"
65 IUSE="doc static-libs socks +cxx debug ssl gnutls"
66
67 RDEPEND="ssl? (
68 !gnutls? ( dev-libs/openssl )
69 gnutls? (
70 net-libs/gnutls
71 dev-libs/libgcrypt
72 )
73 )"
74
75 DEPEND="virtual/pkgconfig
76 doc? ( app-doc/doxygen )
77 ${RDEPEND}"
78
79 DOCS=(README NEWS SUPPORT ChangeLog AUTHORS)
80 PATCHES=( "${FILESDIR}"/disable_rtf_gen_doxy.patch
81 "${FILESDIR}"/install_gcrypt.m4_file.patch
82 "${FILESDIR}"/gcrypt_autotools.patch )
83
84 #"${FILESDIR}/${P}-address.patch"
85 AUTOTOOLS_IN_SOURCE_BUILD=1
86
87 src_configure() {
88 local myconf=""
89 if use ssl; then
90 myconf+=" --with-sslstack=$(usex gnutls gnu ssl) "
91 else
92 myconf+=" --with-sslstack=nossl ";
93 fi
94
95 local myeconfargs=(
96 $(use_enable socks)
97 $(use_enable cxx stdcpp)
98 ${myconf}
99 --enable-atomics
100 --with-pkg-config
101 )
102 autotools-utils_src_configure
103 }
104
105 src_compile() {
106 autotools-utils_src_compile
107 use doc && autotools-utils_src_compile doxy
108 }
109
110 src_install() {
111 autotools-utils_src_install
112 if use doc; then
113 dohtml doc/html/*
114 fi
115 }