Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-games/libgrapple: ChangeLog libgrapple-0.9.8.ebuild
Date: Wed, 02 Sep 2009 06:56:15
Message-Id: E1Mioa8-0001tF-1y@stork.gentoo.org
1 nyhm 09/09/02 12:04:56
2
3 Modified: ChangeLog
4 Added: libgrapple-0.9.8.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 dev-games/libgrapple/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/libgrapple/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/libgrapple/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/libgrapple/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-games/libgrapple/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 7 May 2009 21:01:58 -0000 1.5
23 +++ ChangeLog 2 Sep 2009 12:04:55 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-games/libgrapple
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-games/libgrapple/ChangeLog,v 1.5 2009/05/07 21:01:58 nyhm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-games/libgrapple/ChangeLog,v 1.6 2009/09/02 12:04:55 nyhm Exp $
29 +
30 +*libgrapple-0.9.8 (02 Sep 2009)
31 +
32 + 02 Sep 2009; Tristan Heaven <nyhm@g.o> +libgrapple-0.9.8.ebuild,
33 + +files/libgrapple-0.9.8-build.patch:
34 + Version bump
35
36 07 May 2009; Tristan Heaven <nyhm@g.o> libgrapple-0.9.7.ebuild:
37 Add src_test
38
39
40
41 1.1 dev-games/libgrapple/libgrapple-0.9.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/libgrapple/libgrapple-0.9.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/libgrapple/libgrapple-0.9.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libgrapple-0.9.8.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-games/libgrapple/libgrapple-0.9.8.ebuild,v 1.1 2009/09/02 12:04:55 nyhm Exp $
51
52 EAPI=2
53 inherit autotools eutils
54
55 DESCRIPTION="A high level network layer for multiuser applications"
56 HOMEPAGE="http://grapple.linuxgamepublishing.com/"
57 SRC_URI="http://osfiles.linuxgamepublishing.com/${P}.tbz"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="ssl"
63
64 RDEPEND="ssl? ( dev-libs/openssl )"
65 DEPEND="${RDEPEND}
66 dev-util/pkgconfig"
67
68 src_prepare() {
69 epatch "${FILESDIR}"/${P}-build.patch
70 eautoreconf
71 }
72
73 src_configure() {
74 econf $(use_enable ssl openssl)
75 }
76
77 src_test() {
78 test/unittest | tee "${T}"/test.log
79 tail -n 1 "${T}"/test.log | grep -q " 0 fail" || die "test failed"
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die "emake install failed"
84 dodoc CREDITS README* UPDATES
85 }