* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2011-06-12 10:42 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 11+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-06-12 10:42 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/06/12 10:42:45
Modified: ChangeLog
Added: celestia-1.6.1.ebuild
Log:
Version bump wrt #370499 by Nils Larsson <ni1s@nerdshack.com>. Fixes building with gcc-4.6 (bug #366073)
(Portage version: 2.2.0_alpha36/cvs/Linux x86_64)
Revision Changes Path
1.70 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.69&r2=1.70
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog 2 Mar 2011 21:34:44 -0000 1.69
+++ ChangeLog 12 Jun 2011 10:42:44 -0000 1.70
@@ -1,6 +1,13 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.69 2011/03/02 21:34:44 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.70 2011/06/12 10:42:44 xarthisius Exp $
+
+*celestia-1.6.1 (12 Jun 2011)
+
+ 12 Jun 2011; Kacper Kowalik <xarthisius@gentoo.org> +celestia-1.6.1.ebuild,
+ +files/celestia-1.6.1-as-needed.patch, +files/celestia-1.6.1-gcc46.patch:
+ Version bump wrt #370499 by Nils Larsson <ni1s@nerdshack.com>. Fixes building
+ with gcc-4.6 (bug #366073)
02 Mar 2011; Justin Lecher <jlec@gentoo.org> celestia-1.6.0.ebuild:
Correct Slots for gtk 3 introduction to tree
1.1 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.1&content-type=text/plain
Index: celestia-1.6.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.1 2011/06/12 10:42:44 xarthisius Exp $
EAPI=2
inherit eutils flag-o-matic gnome2 autotools
DESCRIPTION="OpenGL 3D space simulator"
HOMEPAGE="http://www.shatters.net/celestia/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="cairo gnome gtk nls pch theora threads"
RDEPEND="virtual/opengl
virtual/jpeg
media-libs/libpng
>=dev-lang/lua-5.0
gtk? ( !gnome? ( x11-libs/gtk+:2 >=x11-libs/gtkglext-1.0 ) )
gnome? (
x11-libs/gtk+:2
>=x11-libs/gtkglext-1.0
>=gnome-base/libgnomeui-2.0
)
!gtk? ( !gnome? ( media-libs/freeglut ) )
cairo? ( x11-libs/cairo )
theora? ( media-libs/libtheora )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
# Check for one for the following use flags to be set.
if use gnome; then
einfo "USE=\"gnome\" detected."
USE_DESTDIR="1"
CELESTIA_GUI="gnome"
elif use gtk; then
einfo "USE=\"gtk\" detected."
CELESTIA_GUI="gtk"
else
ewarn "If you want to use the full gui, set USE=\"{gnome|gtk}\""
ewarn "Defaulting to glut support (no GUI)."
CELESTIA_GUI="glut"
fi
}
src_prepare() {
# make better desktop files
epatch "${FILESDIR}"/${PN}-1.5.0-desktop.patch
# add a ~/.celestia for extra directories
epatch "${FILESDIR}"/${PN}-1.6.0-cfg.patch
# --as-needed fix
epatch "${FILESDIR}"/${P}-as-needed.patch
# fix missing includes for gcc-4.6
epatch "${FILESDIR}"/${P}-gcc46.patch
# remove flags to let the user decide
for cf in -O2 -ffast-math \
-fexpensive-optimizations \
-fomit-frame-pointer; do
sed -i \
-e "s/${cf}//g" \
configure.in admin/* || die "sed failed"
done
# remove an unused gconf macro killing autoconf when no gnome
# (not needed without eautoreconf)
if ! use gnome; then
sed -i \
-e '/AM_GCONF_SOURCE_2/d' \
configure.in || die "sed failed"
fi
eautoreconf
filter-flags "-funroll-loops -frerun-loop-opt"
### This version of Celestia has a bug in the font rendering and
### requires -fsigned-char. We should be able to force this flag
### on all architectures. See bug #316573.
append-flags "-fsigned-char"
}
src_configure() {
# force lua in 1.6.1. seems to be inevitable
econf \
--disable-rpath \
--with-${CELESTIA_GUI} \
--with-lua \
$(use_enable cairo) \
$(use_enable threads threading) \
$(use_enable nls) \
$(use_enable pch) \
$(use_enable theora)
}
src_install() {
if [[ ${CELESTIA_GUI} == gnome ]]; then
gnome2_src_install
else
emake DESTDIR="${D}" install || die "emake install failed"
for size in 16 22 32 48 ; do
insinto /usr/share/icons/hicolor/${size}x${size}/apps
newins "${S}"/src/celestia/kde/data/hi${size}-app-${PN}.png ${PN}.png
done
fi
[[ ${CELESTIA_GUI} == glut ]] && domenu celestia.desktop
dodoc AUTHORS README TRANSLATORS *.txt || die
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2011-08-07 8:02 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-08-07 8:02 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/08/07 08:02:50
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
Include zlib.h for Z_BEST_COMPRESSION (required by libpng15 porting) wrt #355079 by Lars Wendler
(Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
Revision Changes Path
1.3 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.2&r2=1.3
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- celestia-1.6.1.ebuild 16 Jul 2011 17:47:20 -0000 1.2
+++ celestia-1.6.1.ebuild 7 Aug 2011 08:02:49 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.2 2011/07/16 17:47:20 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.3 2011/08/07 08:02:49 ssuominen Exp $
EAPI=2
@@ -60,6 +60,8 @@
epatch "${FILESDIR}"/${P}-gcc46.patch
# underlinking fix with USE="-gnome -gtk"
epatch "${FILESDIR}"/${P}-gold.patch
+ # missing zlib.h include with libpng15
+ epatch "${FILESDIR}"/${P}-libpng15.patch
# remove flags to let the user decide
for cf in -O2 -ffast-math \
1.73 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.72&r2=1.73
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog 4 Aug 2011 18:27:10 -0000 1.72
+++ ChangeLog 7 Aug 2011 08:02:49 -0000 1.73
@@ -1,6 +1,11 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.72 2011/08/04 18:27:10 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.73 2011/08/07 08:02:49 ssuominen Exp $
+
+ 07 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> celestia-1.6.1.ebuild,
+ +files/celestia-1.6.1-libpng15.patch:
+ Include zlib.h for Z_BEST_COMPRESSION (required by libpng15 porting) wrt
+ #355079 by Lars Wendler
04 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> metadata.xml:
Switched herd to sci-astronomy
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2011-10-08 10:58 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-08 10:58 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/10/08 10:58:02
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
amd64 stable wrt #385985
(Portage version: 2.2.0_alpha61/cvs/Linux x86_64)
Revision Changes Path
1.4 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.3&r2=1.4
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- celestia-1.6.1.ebuild 7 Aug 2011 08:02:49 -0000 1.3
+++ celestia-1.6.1.ebuild 8 Oct 2011 10:58:01 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.3 2011/08/07 08:02:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.4 2011/10/08 10:58:01 ssuominen Exp $
EAPI=2
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="cairo gnome gtk nls pch theora threads"
RDEPEND="
1.74 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.73&r2=1.74
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog 7 Aug 2011 08:02:49 -0000 1.73
+++ ChangeLog 8 Oct 2011 10:58:01 -0000 1.74
@@ -1,6 +1,9 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.73 2011/08/07 08:02:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.74 2011/10/08 10:58:01 ssuominen Exp $
+
+ 08 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> celestia-1.6.1.ebuild:
+ amd64 stable wrt #385985
07 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> celestia-1.6.1.ebuild,
+files/celestia-1.6.1-libpng15.patch:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2011-10-08 16:46 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 11+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-10-08 16:46 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 11/10/08 16:46:09
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
x86 stable wrt bug #385985
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.5 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.4&r2=1.5
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- celestia-1.6.1.ebuild 8 Oct 2011 10:58:01 -0000 1.4
+++ celestia-1.6.1.ebuild 8 Oct 2011 16:46:09 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.4 2011/10/08 10:58:01 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.5 2011/10/08 16:46:09 phajdan.jr Exp $
EAPI=2
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
IUSE="cairo gnome gtk nls pch theora threads"
RDEPEND="
1.75 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.74&r2=1.75
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog 8 Oct 2011 10:58:01 -0000 1.74
+++ ChangeLog 8 Oct 2011 16:46:09 -0000 1.75
@@ -1,6 +1,9 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.74 2011/10/08 10:58:01 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.75 2011/10/08 16:46:09 phajdan.jr Exp $
+
+ 08 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> celestia-1.6.1.ebuild:
+ x86 stable wrt bug #385985
08 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> celestia-1.6.1.ebuild:
amd64 stable wrt #385985
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2011-10-11 22:32 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-11 22:32 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/10/11 22:32:35
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
ppc64 stable wrt #385985
(Portage version: 2.2.0_alpha64/cvs/Linux x86_64)
Revision Changes Path
1.6 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.5&r2=1.6
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- celestia-1.6.1.ebuild 8 Oct 2011 16:46:09 -0000 1.5
+++ celestia-1.6.1.ebuild 11 Oct 2011 22:32:35 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.5 2011/10/08 16:46:09 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.6 2011/10/11 22:32:35 ssuominen Exp $
EAPI=2
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~ppc ppc64 ~sparc x86"
IUSE="cairo gnome gtk nls pch theora threads"
RDEPEND="
1.76 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.75&r2=1.76
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog 8 Oct 2011 16:46:09 -0000 1.75
+++ ChangeLog 11 Oct 2011 22:32:35 -0000 1.76
@@ -1,6 +1,9 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.75 2011/10/08 16:46:09 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.76 2011/10/11 22:32:35 ssuominen Exp $
+
+ 11 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> celestia-1.6.1.ebuild:
+ ppc64 stable wrt #385985
08 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> celestia-1.6.1.ebuild:
x86 stable wrt bug #385985
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2011-10-15 19:31 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 11+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-10-15 19:31 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/10/15 19:31:36
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
ppc stable wrt #385985
(Portage version: 2.2.0_alpha63/cvs/Linux x86_64)
Revision Changes Path
1.7 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.6&r2=1.7
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- celestia-1.6.1.ebuild 11 Oct 2011 22:32:35 -0000 1.6
+++ celestia-1.6.1.ebuild 15 Oct 2011 19:31:35 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.6 2011/10/11 22:32:35 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.7 2011/10/15 19:31:35 xarthisius Exp $
EAPI=2
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 ppc ppc64 ~sparc x86"
IUSE="cairo gnome gtk nls pch theora threads"
RDEPEND="
1.77 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.76&r2=1.77
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog 11 Oct 2011 22:32:35 -0000 1.76
+++ ChangeLog 15 Oct 2011 19:31:35 -0000 1.77
@@ -1,6 +1,9 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.76 2011/10/11 22:32:35 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.77 2011/10/15 19:31:35 xarthisius Exp $
+
+ 15 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> celestia-1.6.1.ebuild:
+ ppc stable wrt #385985
11 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> celestia-1.6.1.ebuild:
ppc64 stable wrt #385985
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2011-10-31 20:08 Andreas HAttel (dilfridge)
0 siblings, 0 replies; 11+ messages in thread
From: Andreas HAttel (dilfridge) @ 2011-10-31 20:08 UTC (permalink / raw
To: gentoo-commits
dilfridge 11/10/31 20:08:58
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
Another underlinking fix, bug 387609
(Portage version: 2.1.10.32/cvs/Linux x86_64)
Revision Changes Path
1.9 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.8&r2=1.9
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- celestia-1.6.1.ebuild 23 Oct 2011 16:16:07 -0000 1.8
+++ celestia-1.6.1.ebuild 31 Oct 2011 20:08:58 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.8 2011/10/23 16:16:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.9 2011/10/31 20:08:58 dilfridge Exp $
EAPI=2
@@ -62,6 +62,8 @@
epatch "${FILESDIR}"/${P}-gold.patch
# missing zlib.h include with libpng15
epatch "${FILESDIR}"/${P}-libpng15.patch
+ # another underlinking fix, bug 387609
+ epatch "${FILESDIR}"/${P}-underlinking.patch
# remove flags to let the user decide
for cf in -O2 -ffast-math \
1.79 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.78&r2=1.79
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog 23 Oct 2011 16:16:07 -0000 1.78
+++ ChangeLog 31 Oct 2011 20:08:58 -0000 1.79
@@ -1,6 +1,10 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.78 2011/10/23 16:16:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.79 2011/10/31 20:08:58 dilfridge Exp $
+
+ 31 Oct 2011; Andreas K. Huettel <dilfridge@gentoo.org> celestia-1.6.1.ebuild,
+ +files/celestia-1.6.1-underlinking.patch:
+ Another underlinking fix, bug 387609
23 Oct 2011; Raúl Porcel <armin76@gentoo.org> celestia-1.6.0.ebuild,
celestia-1.6.1.ebuild:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2011-11-01 8:13 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 11+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-11-01 8:13 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/11/01 08:13:01
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
Combine all patches fixing linking issues into one
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
Revision Changes Path
1.10 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.9&r2=1.10
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- celestia-1.6.1.ebuild 31 Oct 2011 20:08:58 -0000 1.9
+++ celestia-1.6.1.ebuild 1 Nov 2011 08:13:01 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.9 2011/10/31 20:08:58 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.10 2011/11/01 08:13:01 xarthisius Exp $
EAPI=2
@@ -54,16 +54,11 @@
epatch "${FILESDIR}"/${PN}-1.5.0-desktop.patch
# add a ~/.celestia for extra directories
epatch "${FILESDIR}"/${PN}-1.6.0-cfg.patch
- # --as-needed fix
- epatch "${FILESDIR}"/${P}-as-needed.patch
# fix missing includes for gcc-4.6
epatch "${FILESDIR}"/${P}-gcc46.patch
- # underlinking fix with USE="-gnome -gtk"
- epatch "${FILESDIR}"/${P}-gold.patch
# missing zlib.h include with libpng15
- epatch "${FILESDIR}"/${P}-libpng15.patch
- # another underlinking fix, bug 387609
- epatch "${FILESDIR}"/${P}-underlinking.patch
+ epatch "${FILESDIR}"/${P}-libpng15.patch \
+ "${FILESDIR}"/${P}-linking.patch
# remove flags to let the user decide
for cf in -O2 -ffast-math \
1.81 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.80&r2=1.81
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog 31 Oct 2011 23:20:37 -0000 1.80
+++ ChangeLog 1 Nov 2011 08:13:01 -0000 1.81
@@ -1,6 +1,12 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.80 2011/10/31 23:20:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.81 2011/11/01 08:13:01 xarthisius Exp $
+
+ 01 Nov 2011; Kacper Kowalik <xarthisius@gentoo.org> celestia-1.6.1.ebuild,
+ -files/celestia-1.6.1-as-needed.patch, -files/celestia-1.6.1-gold.patch,
+ +files/celestia-1.6.1-linking.patch,
+ -files/celestia-1.6.1-underlinking.patch:
+ Combine all patches fixing linking issues into one
31 Oct 2011; Samuli Suominen <ssuominen@gentoo.org>
-files/celestia-1.4.1-as-needed.patch, -files/celestia-1.5.1-gcc44.patch,
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2012-02-21 20:37 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 11+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-02-21 20:37 UTC (permalink / raw
To: gentoo-commits
xarthisius 12/02/21 20:37:31
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
Pax mark m main binary wrt bug 365359 by Nikoli <nikoli@lavabit.com>
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Revision Changes Path
1.11 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.10&r2=1.11
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- celestia-1.6.1.ebuild 1 Nov 2011 08:13:01 -0000 1.10
+++ celestia-1.6.1.ebuild 21 Feb 2012 20:37:31 -0000 1.11
@@ -1,10 +1,10 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.10 2011/11/01 08:13:01 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.11 2012/02/21 20:37:31 xarthisius Exp $
EAPI=2
-inherit eutils flag-o-matic gnome2 autotools
+inherit eutils flag-o-matic gnome2 autotools pax-utils
DESCRIPTION="OpenGL 3D space simulator"
HOMEPAGE="http://www.shatters.net/celestia/"
@@ -109,4 +109,5 @@
fi
[[ ${CELESTIA_GUI} == glut ]] && domenu celestia.desktop
dodoc AUTHORS README TRANSLATORS *.txt || die
+ pax-mark -m "${D}"/usr/bin/${PN} #365359
}
1.83 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.82&r2=1.83
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog 4 Feb 2012 19:08:25 -0000 1.82
+++ ChangeLog 21 Feb 2012 20:37:31 -0000 1.83
@@ -1,6 +1,9 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.82 2012/02/04 19:08:25 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.83 2012/02/21 20:37:31 xarthisius Exp $
+
+ 21 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> celestia-1.6.1.ebuild:
+ Pax mark m main binary wrt bug 365359 by Nikoli <nikoli@lavabit.com>
04 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org>
files/celestia-1.6.1-linking.patch:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2012-05-04 6:46 Jeff Horelick (jdhore)
0 siblings, 0 replies; 11+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-05-04 6:46 UTC (permalink / raw
To: gentoo-commits
jdhore 12/05/04 06:46:12
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
dev-util/pkgconfig -> virtual/pkgconfig
(Portage version: 2.2.0_alpha101/cvs/Linux i686)
Revision Changes Path
1.12 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.11&r2=1.12
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- celestia-1.6.1.ebuild 21 Feb 2012 20:37:31 -0000 1.11
+++ celestia-1.6.1.ebuild 4 May 2012 06:46:12 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.11 2012/02/21 20:37:31 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.12 2012/05/04 06:46:12 jdhore Exp $
EAPI=2
@@ -31,7 +31,7 @@
theora? ( media-libs/libtheora )"
DEPEND="${RDEPEND}
- dev-util/pkgconfig"
+ virtual/pkgconfig"
pkg_setup() {
# Check for one for the following use flags to be set.
1.84 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.83&r2=1.84
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog 21 Feb 2012 20:37:31 -0000 1.83
+++ ChangeLog 4 May 2012 06:46:12 -0000 1.84
@@ -1,6 +1,9 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.83 2012/02/21 20:37:31 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.84 2012/05/04 06:46:12 jdhore Exp $
+
+ 04 May 2012; Jeff Horelick <jdhore@gentoo.org> celestia-1.6.1.ebuild:
+ dev-util/pkgconfig -> virtual/pkgconfig
21 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> celestia-1.6.1.ebuild:
Pax mark m main binary wrt bug 365359 by Nikoli <nikoli@lavabit.com>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog
@ 2012-06-03 15:37 Justin Lecher (jlec)
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher (jlec) @ 2012-06-03 15:37 UTC (permalink / raw
To: gentoo-commits
jlec 12/06/03 15:37:32
Modified: celestia-1.6.1.ebuild ChangeLog
Log:
sci-astronomy/celestia: Add patch for gcc47, #414015
(Portage version: 2.2.0_alpha109/cvs/Linux x86_64)
Revision Changes Path
1.13 sci-astronomy/celestia/celestia-1.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild?r1=1.12&r2=1.13
Index: celestia-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- celestia-1.6.1.ebuild 4 May 2012 06:46:12 -0000 1.12
+++ celestia-1.6.1.ebuild 3 Jun 2012 15:37:31 -0000 1.13
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.12 2012/05/04 06:46:12 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.6.1.ebuild,v 1.13 2012/06/03 15:37:31 jlec Exp $
EAPI=2
@@ -60,6 +60,9 @@
epatch "${FILESDIR}"/${P}-libpng15.patch \
"${FILESDIR}"/${P}-linking.patch
+ # gcc-47, #414015
+ epatch "${FILESDIR}"/${P}-gcc47.patch
+
# remove flags to let the user decide
for cf in -O2 -ffast-math \
-fexpensive-optimizations \
1.85 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.84&r2=1.85
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog 4 May 2012 06:46:12 -0000 1.84
+++ ChangeLog 3 Jun 2012 15:37:32 -0000 1.85
@@ -1,6 +1,10 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.84 2012/05/04 06:46:12 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.85 2012/06/03 15:37:32 jlec Exp $
+
+ 03 Jun 2012; Justin Lecher <jlec@gentoo.org> celestia-1.6.1.ebuild,
+ +files/celestia-1.6.1-gcc47.patch:
+ Add patch for gcc47, #414015
04 May 2012; Jeff Horelick <jdhore@gentoo.org> celestia-1.6.1.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2012-06-03 15:37 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-03 15:37 [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: celestia-1.6.1.ebuild ChangeLog Justin Lecher (jlec)
-- strict thread matches above, loose matches on Subject: below --
2012-05-04 6:46 Jeff Horelick (jdhore)
2012-02-21 20:37 Kacper Kowalik (xarthisius)
2011-11-01 8:13 Kacper Kowalik (xarthisius)
2011-10-31 20:08 Andreas HAttel (dilfridge)
2011-10-15 19:31 Kacper Kowalik (xarthisius)
2011-10-11 22:32 Samuli Suominen (ssuominen)
2011-10-08 16:46 PaweA Hajdan (phajdan.jr)
2011-10-08 10:58 Samuli Suominen (ssuominen)
2011-08-07 8:02 Samuli Suominen (ssuominen)
2011-06-12 10:42 Kacper Kowalik (xarthisius)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox