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: ChangeLog cyphesis-0.6.2.ebuild
Date: Sat, 02 Nov 2013 14:15:15
Message-Id: 20131102141508.3B9052004E@flycatcher.gentoo.org
1 tupone 13/11/02 14:15:08
2
3 Modified: ChangeLog
4 Added: cyphesis-0.6.2.ebuild
5 Log:
6 Version bump to 0.6.2
7
8 (Portage version: 2.2.7/cvs/Linux i686, signed Manifest commit with key 0145142D)
9
10 Revision Changes Path
11 1.34 games-server/cyphesis/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-server/cyphesis/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 2 Oct 2013 07:56:41 -0000 1.33
24 +++ ChangeLog 2 Nov 2013 14:15:07 -0000 1.34
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.33 2013/10/02 07:56:41 tupone Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-server/cyphesis/ChangeLog,v 1.34 2013/11/02 14:15:07 tupone Exp $
30 +
31 +*cyphesis-0.6.2 (02 Nov 2013)
32 +
33 + 02 Nov 2013; Tupone Alfredo <tupone@g.o> +cyphesis-0.6.2.ebuild,
34 + +files/cyphesis-0.6.2-gentoo.patch, +files/cyphesis-0.6.2-makefile.patch:
35 + Version bump to 0.6.2
36
37 *cyphesis-0.6.1 (02 Oct 2013)
38
39
40
41
42 1.1 games-server/cyphesis/cyphesis-0.6.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/cyphesis-0.6.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/cyphesis/cyphesis-0.6.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cyphesis-0.6.2.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.2.ebuild,v 1.1 2013/11/02 14:15:08 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 }