Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
Date: Fri, 02 Jul 2010 14:59:01
Message-Id: 20100702145855.1E53F2C621@corvid.gentoo.org
1 ssuominen 10/07/02 14:58:54
2
3 Modified: ChangeLog
4 Added: asio-1.4.5.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.21 dev-cpp/asio/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 16 May 2010 16:30:11 -0000 1.20
23 +++ ChangeLog 2 Jul 2010 14:58:54 -0000 1.21
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-cpp/asio
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.20 2010/05/16 16:30:11 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.21 2010/07/02 14:58:54 ssuominen Exp $
29 +
30 +*asio-1.4.5 (02 Jul 2010)
31 +
32 + 02 Jul 2010; Samuli Suominen <ssuominen@g.o> +asio-1.4.5.ebuild:
33 + Version bump.
34
35 16 May 2010; Raúl Porcel <armin76@g.o> asio-0.3.9.ebuild,
36 asio-1.1.0.ebuild, asio-1.4.1.ebuild:
37
38
39
40 1.1 dev-cpp/asio/asio-1.4.5.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: asio-1.4.5.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.1 2010/07/02 14:58:54 ssuominen Exp $
50
51 EAPI=2
52
53 DESCRIPTION="Asynchronous Network Library"
54 HOMEPAGE="http://asio.sourceforge.net/"
55 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
56
57 LICENSE="Boost-1.0"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~ia64 ~sparc ~x86"
60 IUSE="doc examples ssl test"
61
62 DEPEND="ssl? ( dev-libs/openssl )
63 >=dev-libs/boost-1.35.0"
64
65 src_prepare() {
66 if ! use test; then
67 # Don't build nor install any examples or unittests
68 # since we don't have a script to run them
69 cat > src/Makefile.in <<-EOF
70 all:
71
72 install:
73 EOF
74 fi
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die
79 dodoc README
80
81 if use doc; then
82 dohtml -r doc/*
83 fi
84
85 if use examples; then
86 if use test; then
87 # Get rid of the object files
88 emake clean || die
89 fi
90 insinto /usr/share/doc/${PF}
91 doins -r src/examples
92 fi
93 }