Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/rudiments: ChangeLog rudiments-0.46.ebuild rudiments-0.32.ebuild rudiments-0.31.ebuild
Date: Sat, 03 May 2014 22:40:30
Message-Id: 20140503224026.787A72004C@flycatcher.gentoo.org
1 pinkbyte 14/05/03 22:40:26
2
3 Modified: ChangeLog
4 Added: rudiments-0.46.ebuild
5 Removed: rudiments-0.32.ebuild rudiments-0.31.ebuild
6 Log:
7 Version bump, wrt bug #488108. Update buildsystem patch - respect CFLAGS, migrate to autotools-utils eclass. Drop old versions
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.17 dev-cpp/rudiments/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/rudiments/ChangeLog?rev=1.17&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/rudiments/ChangeLog?rev=1.17&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/rudiments/ChangeLog?r1=1.16&r2=1.17
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/ChangeLog,v
21 retrieving revision 1.16
22 retrieving revision 1.17
23 diff -u -r1.16 -r1.17
24 --- ChangeLog 7 Feb 2013 10:16:06 -0000 1.16
25 +++ ChangeLog 3 May 2014 22:40:26 -0000 1.17
26 @@ -1,6 +1,14 @@
27 # ChangeLog for dev-cpp/rudiments
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/ChangeLog,v 1.16 2013/02/07 10:16:06 dev-zero Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/ChangeLog,v 1.17 2014/05/03 22:40:26 pinkbyte Exp $
32 +
33 +*rudiments-0.46 (03 May 2014)
34 +
35 + 03 May 2014; Sergey Popov <pinkbyte@g.o> -rudiments-0.31.ebuild,
36 + -rudiments-0.32.ebuild, +rudiments-0.46.ebuild,
37 + +files/rudiments-0.46-buildsystem.patch:
38 + Version bump, wrt bug #488108. Update buildsystem patch - respect CFLAGS,
39 + migrate to autotools-utils eclass. Drop old versions
40
41 07 Feb 2013; Tiziano Müller <dev-zero@g.o> metadata.xml:
42 Add upstream remote-id info.
43
44
45
46 1.1 dev-cpp/rudiments/rudiments-0.46.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/rudiments/rudiments-0.46.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/rudiments/rudiments-0.46.ebuild?rev=1.1&content-type=text/plain
50
51 Index: rudiments-0.46.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/rudiments-0.46.ebuild,v 1.1 2014/05/03 22:40:26 pinkbyte Exp $
56
57 EAPI="5"
58
59 AUTOTOOLS_AUTORECONF=1
60 AUTOTOOLS_IN_SOURCE_BUILD=1
61 inherit autotools-utils
62
63 DESCRIPTION="C++ class library for daemons, clients and servers"
64 HOMEPAGE="http://rudiments.sourceforge.net/"
65 SRC_URI="mirror://sourceforge/rudiments/${P}.tar.gz"
66
67 LICENSE="LGPL-2.1"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ppc ~x86"
70 IUSE="debug pcre ssl static-libs"
71
72 DEPEND="pcre? ( dev-libs/libpcre )
73 ssl? ( dev-libs/openssl:0 )"
74 RDEPEND="${DEPEND}"
75
76 PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" )
77
78 src_configure() {
79 local myeconfargs=(
80 --docdir="/usr/share/doc/${PF}/html" \
81 $(use debug && "--enable-debug") \
82 $(use_enable pcre) \
83 $(use_enable ssl)
84 )
85 autotools-utils_src_configure
86 }