Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-server/cyphesis: cyphesis-0.6.1.ebuild ChangeLog
Date: Wed, 02 Oct 2013 07:56:47
Message-Id: 20131002075641.377382004C@flycatcher.gentoo.org
1 tupone 13/10/02 07:56:41
2
3 Modified: ChangeLog
4 Added: cyphesis-0.6.1.ebuild
5 Log:
6 Version bump to 0.6.1
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
9
10 Revision Changes Path
11 1.33 games-server/cyphesis/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-server/cyphesis/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 8 Jan 2013 10:03:36 -0000 1.32
24 +++ ChangeLog 2 Oct 2013 07:56:41 -0000 1.33
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-server/cyphesis
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-server/cyphesis/ChangeLog,v 1.32 2013/01/08 10:03:36 tupone Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-server/cyphesis/ChangeLog,v 1.33 2013/10/02 07:56:41 tupone Exp $
30 +
31 +*cyphesis-0.6.1 (02 Oct 2013)
32 +
33 + 02 Oct 2013; Alfredo Tupone <tupone@g.o> +cyphesis-0.6.1.ebuild,
34 + +files/cyphesis-0.6.1-gentoo.patch, +files/cyphesis-0.6.1-makefile.patch:
35 + Version bump to 0.6.1
36
37 08 Jan 2013; Tupone Alfredo <tupone@g.o> -cyphesis-0.5.26.ebuild,
38 -files/cyphesis-0.5.26-gentoo.patch:
39
40
41
42 1.1 games-server/cyphesis/cyphesis-0.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/cyphesis-0.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/cyphesis-0.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cyphesis-0.6.1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-server/cyphesis/cyphesis-0.6.1.ebuild,v 1.1 2013/10/02 07:56:40 tupone Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_6,2_7} )
55 inherit toolchain-funcs autotools python-single-r1 eutils games
56
57 DESCRIPTION="WorldForge server running small games"
58 HOMEPAGE="http://worldforge.org/dev/eng/servers/cyphesis"
59 SRC_URI="mirror://sourceforge/worldforge/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65 RESTRICT="test"
66
67 RDEPEND=">=media-libs/skstream-0.3.9
68 >=dev-games/wfmath-1.0.1
69 >=dev-games/mercator-0.3.3
70 dev-libs/libgcrypt
71 dev-libs/libsigc++:2
72 sys-libs/ncurses
73 sys-libs/readline
74 >=media-libs/atlas-c++-0.6.3
75 >=media-libs/varconf-0.6.4
76 dev-db/postgresql-base"
77 DEPEND="${RDEPEND}
78 >=dev-libs/boost-1.40
79 dev-libs/libxml2
80 virtual/pkgconfig"
81
82 pkg_setup() {
83 python-single-r1_pkg_setup
84 games_pkg_setup
85 }
86
87 src_prepare() {
88 epatch \
89 "${FILESDIR}"/${P}-gentoo.patch \
90 "${FILESDIR}"/${P}-makefile.patch
91 eautoreconf
92 }
93
94 src_configure() {
95 egamesconf \
96 --localstatedir=/var
97 }
98
99 src_compile() {
100 emake AR="$(tc-getAR)"
101 }
102
103 src_install() {
104 emake DESTDIR="${D}" confbackupdir="/usr/share/doc/${PF}/conf" \
105 install
106 dodoc AUTHORS ChangeLog FIXME NEWS README THANKS TODO
107 prepgamesdirs
108 }