xmw 12/06/18 22:38:11
Modified: ChangeLog golly-2.3-r1.ebuild
Added: golly-2.4.ebuild
Removed: golly-2.3.ebuild golly-2.2-r1.ebuild
golly-2.2.ebuild
Log:
Version bump (thanks Maks Verver, bug 421485), drop old, remove eutils eclass.
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Revision Changes Path
1.15 app-misc/golly/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/golly/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/golly/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/golly/ChangeLog?r1=1.14&r2=1.15
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/golly/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog 8 Jun 2012 11:55:18 -0000 1.14
+++ ChangeLog 18 Jun 2012 22:38:11 -0000 1.15
@@ -1,6 +1,14 @@
# ChangeLog for app-misc/golly
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/golly/ChangeLog,v 1.14 2012/06/08 11:55:18 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/golly/ChangeLog,v 1.15 2012/06/18 22:38:11 xmw Exp $
+
+*golly-2.4 (18 Jun 2012)
+
+ 18 Jun 2012; Michael Weber <xmw@g.o> -golly-2.2.ebuild,
+ -golly-2.2-r1.ebuild, -files/golly-2.2-perl-5.14.patch, -golly-2.3.ebuild,
+ golly-2.3-r1.ebuild, +golly-2.4.ebuild:
+ Version bump (thanks Maks Verver, bug 421485), drop old, remove eutils
+ eclass.
08 Jun 2012; Pawel Hajdan jr <phajdan.jr@g.o> golly-2.3-r1.ebuild:
x86 stable wrt bug #418605
1.4 app-misc/golly/golly-2.3-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/golly/golly-2.3-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/golly/golly-2.3-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/golly/golly-2.3-r1.ebuild?r1=1.3&r2=1.4
Index: golly-2.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/golly/golly-2.3-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- golly-2.3-r1.ebuild 8 Jun 2012 11:55:18 -0000 1.3
+++ golly-2.3-r1.ebuild 18 Jun 2012 22:38:11 -0000 1.4
@@ -1,12 +1,12 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/golly/golly-2.3-r1.ebuild,v 1.3 2012/06/08 11:55:18 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/golly/golly-2.3-r1.ebuild,v 1.4 2012/06/18 22:38:11 xmw Exp $
EAPI=4
PYTHON_DEPEND=2
WX_GTK_VER=2.8
-inherit eutils python toolchain-funcs wxwidgets
+inherit python toolchain-funcs wxwidgets
MY_P=${P}-src
DESCRIPTION="simulator for Conway's Game of Life and other cellular automata"
1.1 app-misc/golly/golly-2.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/golly/golly-2.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/golly/golly-2.4.ebuild?rev=1.1&content-type=text/plain
Index: golly-2.4.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/golly/golly-2.4.ebuild,v 1.1 2012/06/18 22:38:11 xmw Exp $
EAPI=4
PYTHON_DEPEND=2
WX_GTK_VER=2.8
inherit python toolchain-funcs wxwidgets
MY_P=${P}-src
DESCRIPTION="simulator for Conway's Game of Life and other cellular automata"
HOMEPAGE="http://golly.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/perl
sys-libs/zlib
x11-libs/wxGTK:${WX_GTK_VER}[X]"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
sed -e 's:-O2::' -i configure Makefile.{am,in} || die
}
src_configure() {
econf \
--with-perl-shlib="libperl.so" \
--with-python-shlib="$(python_get_library)"
}
src_install() {
emake docdir= DESTDIR="${D}" install
dodoc README TODO
}
|