Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-0.3.9.ebuild asio-0.3.8.ebuild asio-0.3.7-r1.ebuild
Date: Mon, 24 Dec 2007 07:42:21
Message-Id: E1J6hww-00032u-DW@stork.gentoo.org
1 dev-zero 07/12/24 07:42:10
2
3 Modified: ChangeLog
4 Added: asio-0.3.9.ebuild
5 Removed: asio-0.3.8.ebuild asio-0.3.7-r1.ebuild
6 Log:
7 Version bump (bug #202975), only do 'make clean' when tests have been run (bug #203109)
8 (Portage version: 2.1.4_rc11)
9
10 Revision Changes Path
11 1.11 dev-cpp/asio/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 1 Dec 2007 18:28:12 -0000 1.10
24 +++ ChangeLog 24 Dec 2007 07:42:09 -0000 1.11
25 @@ -1,6 +1,14 @@
26 # ChangeLog for dev-cpp/asio
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.10 2007/12/01 18:28:12 dev-zero Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.11 2007/12/24 07:42:09 dev-zero Exp $
30 +
31 +*asio-0.3.9 (24 Dec 2007)
32 +
33 + 24 Dec 2007; Tiziano Müller <dev-zero@g.o>
34 + -files/asio-0.3.7-double_delete_fix.patch, -asio-0.3.7-r1.ebuild,
35 + -asio-0.3.8.ebuild, +asio-0.3.9.ebuild:
36 + Version bump (bug #202975), only do 'make clean' when tests have been run
37 + (bug #203109)
38
39 *asio-0.3.8 (01 Dec 2007)
40
41
42
43
44 1.1 dev-cpp/asio/asio-0.3.9.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/asio-0.3.9.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/asio-0.3.9.ebuild?rev=1.1&content-type=text/plain
48
49 Index: asio-0.3.9.ebuild
50 ===================================================================
51 # Copyright 1999-2007 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-0.3.9.ebuild,v 1.1 2007/12/24 07:42:09 dev-zero Exp $
54
55 inherit eutils
56
57 KEYWORDS="~amd64 ~x86"
58
59 DESCRIPTION="Asynchronous Network Library"
60 HOMEPAGE="http://asio.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
62 LICENSE="Boost-1.0"
63 SLOT="0"
64 IUSE="doc examples ssl test"
65
66 DEPEND="ssl? ( dev-libs/openssl )
67 >=dev-libs/boost-1.34.1"
68 RDEPEND="${DEPEND}"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73
74 if ! use test ; then
75 # Don't build nor install any examples or unittests
76 # since we don't have a script to run them
77 cat > src/Makefile.in <<-EOF
78 all:
79
80 install:
81 EOF
82 fi
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "emake install failed"
87
88 dodoc README
89
90 if use doc ; then
91 dohtml -r doc/*
92 fi
93 if use examples ; then
94
95 if use test ; then
96 # Get rid of the object files
97 emake clean || die "emake clean failed"
98 fi
99
100 insinto /usr/share/doc/${PF}
101 doins -r src/examples
102 fi
103 }
104
105
106
107 --
108 gentoo-commits@g.o mailing list