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.1.8.ebuild ChangeLog
Date: Fri, 27 Jun 2014 08:47:08
Message-Id: 20140627084659.BBF6E2004F@flycatcher.gentoo.org
1 maksbotan 14/06/27 08:46:59
2
3 Modified: ChangeLog
4 Added: ucommon-6.1.8.ebuild
5 Log:
6 Bump to 6.1.8, thanks to slepnoga
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
9
10 Revision Changes Path
11 1.20 dev-libs/ucommon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 1 Mar 2014 22:19:31 -0000 1.19
24 +++ ChangeLog 27 Jun 2014 08:46:59 -0000 1.20
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-libs/ucommon
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ChangeLog,v 1.19 2014/03/01 22:19:31 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ChangeLog,v 1.20 2014/06/27 08:46:59 maksbotan Exp $
30 +
31 +*ucommon-6.1.8 (27 Jun 2014)
32 +
33 + 27 Jun 2014; Maxim Koltsov <maksbotan@g.o>
34 + +files/6.1/disable_rtf_gen_doxy.patch, +files/6.1/gcrypt_autotools.patch,
35 + +files/6.1/install_gcrypt.m4_file.patch, +ucommon-6.1.8.ebuild:
36 + Bump to 6.1.8, thanks to slepnoga
37
38 01 Mar 2014; Michał Górny <mgorny@g.o> ucommon-5.2.2-r3.ebuild,
39 ucommon-6.0.3.ebuild:
40
41
42
43 1.1 dev-libs/ucommon/ucommon-6.1.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ucommon-6.1.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucommon/ucommon-6.1.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ucommon-6.1.8.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/ucommon/ucommon-6.1.8.ebuild,v 1.1 2014/06/27 08:46:59 maksbotan Exp $
53
54 EAPI="5"
55
56 AUTOTOOLS_AUTORECONF=1
57
58 inherit autotools-utils eutils
59
60 DESCRIPTION="Portable C++ runtime for threads and sockets"
61 HOMEPAGE="http://www.gnu.org/software/commoncpp"
62 SRC_URI="mirror://gnu/commoncpp/${P}.tar.gz"
63
64 LICENSE="LGPL-3"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux"
67 IUSE="doc static-libs socks +cxx debug ssl gnutls"
68
69 RDEPEND="ssl? (
70 !gnutls? ( dev-libs/openssl )
71 gnutls? (
72 net-libs/gnutls
73 dev-libs/libgcrypt
74 )
75 )"
76
77 DEPEND="virtual/pkgconfig
78 doc? ( app-doc/doxygen )
79 ${RDEPEND}"
80
81 DOCS=(README NEWS SUPPORT ChangeLog AUTHORS)
82 PATCHES=( "${FILESDIR}"/6.1/disable_rtf_gen_doxy.patch
83 "${FILESDIR}"/6.1/install_gcrypt.m4_file.patch
84 "${FILESDIR}"/6.1/gcrypt_autotools.patch )
85
86 #AUTOTOOLS_IN_SOURCE_BUILD=1
87
88 src_prepare() {
89
90 # Aclocal 1.13 deprecated error BGO #467674
91 sed -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' -i configure.ac || die
92
93 autotools-utils_src_prepare
94 }
95
96 src_configure() {
97 local myconf=""
98 if use ssl; then
99 myconf+=" --with-sslstack=$(usex gnutls gnu ssl) "
100 else
101 myconf+=" --with-sslstack=nossl ";
102 fi
103
104 local myeconfargs=(
105 $(use_enable socks)
106 $(use_enable cxx stdcpp)
107 ${myconf}
108 --enable-atomics
109 --with-pkg-config
110 )
111 autotools-utils_src_configure
112 }
113
114 src_compile() {
115 autotools-utils_src_compile
116 use doc && autotools-utils_src_compile doxy
117 }
118
119 src_install() {
120 autotools-utils_src_install
121 if use doc; then
122 dohtml doc/html/*
123 fi
124 }