* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: ChangeLog celestia-1.5.1.ebuild
@ 2008-06-24 17:20 Markus Dittrich (markusle)
0 siblings, 0 replies; 5+ messages in thread
From: Markus Dittrich (markusle) @ 2008-06-24 17:20 UTC (permalink / raw
To: gentoo-commits
markusle 08/06/24 17:20:03
Modified: ChangeLog
Added: celestia-1.5.1.ebuild
Log:
Version bump, including fix for libtool-2.2 problems (bug #228865 and #218982).
(Portage version: 2.2_rc1/cvs/Linux 2.6.25-SENTINEL-3 i686)
Revision Changes Path
1.41 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 15 Apr 2008 15:52:53 -0000 1.40
+++ ChangeLog 24 Jun 2008 17:20:03 -0000 1.41
@@ -1,6 +1,14 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.40 2008/04/15 15:52:53 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.41 2008/06/24 17:20:03 markusle Exp $
+
+*celestia-1.5.1 (24 Jun 2008)
+
+ 24 Jun 2008; Markus Dittrich <markusle@gentoo.org>
+ +files/celestia-1.5.1-arts.patch, +celestia-1.5.1.ebuild:
+ Version bump, including fix for libtool-2.2 problems (bug #228865
+ and #218982). Thanks much to Aleksandr Yakimov <aleks@spamtest.ru>
+ for his patches.
15 Apr 2008; Sébastien Fabbro <bicatali@gentoo.org>
+files/celestia-1.5.0-gcc43.patch, celestia-1.5.0.ebuild:
1.1 sci-astronomy/celestia/celestia-1.5.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.1&content-type=text/plain
Index: celestia-1.5.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.1 2008/06/24 17:20:03 markusle Exp $
inherit eutils flag-o-matic gnome2 kde-functions autotools
DESCRIPTION="OpenGL 3D space simulator"
HOMEPAGE="http://www.shatters.net/celestia/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
mirror://gentoo/${P}-acinclude.patch.bz2
mirror://gentoo/${P}-gcc43.patch.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="arts cairo gnome gtk kde lua nls pch theora threads"
RDEPEND="virtual/glu
media-libs/jpeg
media-libs/libpng
gtk? ( !gnome? ( !kde? (
>=x11-libs/gtk+-2.6
>=x11-libs/gtkglext-1.0
) ) )
gnome? ( !kde? (
>=x11-libs/gtk+-2.6
>=x11-libs/gtkglext-1.0
>=gnome-base/libgnomeui-2.0
) )
kde? ( !gnome? ( >=kde-base/kdelibs-3.0.5 ) )
!gtk? ( !gnome? ( !kde? ( virtual/glut ) ) )
arts? ( kde-base/arts )
lua? ( >=dev-lang/lua-5.0 )
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 && use kde; then
einfo "USE=\"kde\" detected."
CELESTIA_GUI="kde"
elif ! use kde && use gnome; then
einfo "USE=\"gnome\" detected."
USE_DESTDIR="1"
CELESTIA_GUI="gnome"
elif ! use kde && ! use gnome && use gtk; then
einfo "USE=\"gtk\" detected."
CELESTIA_GUI="gtk"
elif use kde && use gnome; then
einfo "Both gnome and kde support requested. Defaulting to kde"
CELESTIA_GUI="kde"
else
ewarn "If you want to use the full gui, set USE=\"{kde/gnome/gtk}\""
ewarn "Defaulting to glut support (no GUI)."
CELESTIA_GUI="glut"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# make better desktop files
epatch "${FILESDIR}"/${PN}-1.5.0-desktop.patch
# add a ~/.celestia for extra directories
epatch "${FILESDIR}"/${PN}-1.4.1-cfg.patch
# fix for as-needed (bug #130091)
epatch "${FILESDIR}"/${PN}-1.4.1-as-needed.patch
# fix for as-needed (bug #217758)
epatch "${DISTDIR}"/${P}-gcc43.patch.bz2
# fix for libtool-2.2 (bug #228865 and #218982)
epatch "${DISTDIR}"/${P}-acinclude.patch.bz2
# needed for kde GUI
epatch "${FILESDIR}"/${P}-arts.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 || 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
}
src_compile() {
if [[ ${CELESTIA_GUI} == kde ]]; then
set-kdedir 3
set-qtdir 3
export kde_widgetdir="${KDEDIR}/lib/kde3/plugins/designer"
fi
filter-flags "-funroll-loops -frerun-loop-opt"
econf \
--with-${CELESTIA_GUI} \
$(use_with arts) \
$(use_with lua) \
$(use_enable cairo) \
$(use_enable threads threading) \
$(use_enable nls) \
$(use_enable pch) \
$(use_enable theora) \
|| die "econf failed"
emake || die "emake failed"
}
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 TODO TRANSLATORS *.txt || die
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: ChangeLog celestia-1.5.1.ebuild
@ 2008-10-12 11:24 Markus Dittrich (markusle)
0 siblings, 0 replies; 5+ messages in thread
From: Markus Dittrich (markusle) @ 2008-10-12 11:24 UTC (permalink / raw
To: gentoo-commits
markusle 08/10/12 11:24:55
Modified: ChangeLog celestia-1.5.1.ebuild
Log:
Added slot dependency on kde-3.5 to make sure we don't pull in kde 4 (fixes bug #241392).
(Portage version: 2.2_rc11/cvs/Linux 2.6.26-SENTINEL-2 i686)
Revision Changes Path
1.42 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 24 Jun 2008 17:20:03 -0000 1.41
+++ ChangeLog 12 Oct 2008 11:24:55 -0000 1.42
@@ -1,6 +1,10 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.41 2008/06/24 17:20:03 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.42 2008/10/12 11:24:55 markusle Exp $
+
+ 12 Oct 2008; Markus Dittrich <markusle@gentoo.org> celestia-1.5.1.ebuild:
+ Added slot dependency on kde-3.5 to make sure we don't pull in kde 4
+ (fixes bug #241392).
*celestia-1.5.1 (24 Jun 2008)
1.2 sci-astronomy/celestia/celestia-1.5.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?r1=1.1&r2=1.2
Index: celestia-1.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- celestia-1.5.1.ebuild 24 Jun 2008 17:20:03 -0000 1.1
+++ celestia-1.5.1.ebuild 12 Oct 2008 11:24:55 -0000 1.2
@@ -1,9 +1,11 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.1 2008/06/24 17:20:03 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.2 2008/10/12 11:24:55 markusle Exp $
inherit eutils flag-o-matic gnome2 kde-functions autotools
+EAPI="1"
+
DESCRIPTION="OpenGL 3D space simulator"
HOMEPAGE="http://www.shatters.net/celestia/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
@@ -27,7 +29,7 @@
>=x11-libs/gtkglext-1.0
>=gnome-base/libgnomeui-2.0
) )
- kde? ( !gnome? ( >=kde-base/kdelibs-3.0.5 ) )
+ kde? ( !gnome? ( kde-base/kdelibs:3.5 ) )
!gtk? ( !gnome? ( !kde? ( virtual/glut ) ) )
arts? ( kde-base/arts )
lua? ( >=dev-lang/lua-5.0 )
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: ChangeLog celestia-1.5.1.ebuild
@ 2008-11-06 12:00 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2008-11-06 12:00 UTC (permalink / raw
To: gentoo-commits
bicatali 08/11/06 12:00:17
Modified: ChangeLog celestia-1.5.1.ebuild
Log:
Added a unicode flag to encode iso-8859-1 doc files into utf8, closing bug #245280
(Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 x86_64)
Revision Changes Path
1.44 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 6 Nov 2008 00:07:30 -0000 1.43
+++ ChangeLog 6 Nov 2008 12:00:17 -0000 1.44
@@ -1,6 +1,11 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.43 2008/11/06 00:07:30 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.44 2008/11/06 12:00:17 bicatali Exp $
+
+ 06 Nov 2008; Sébastien Fabbro <bicatali@gentoo.org>
+ celestia-1.5.1.ebuild:
+ Added a unicode flag to encode iso-8859-1 doc files into utf8, closing
+ bug #245280.
05 Nov 2008; Markus Dittrich <markusle@gentoo.org>
+files/celestia-1.5.1-kde-3.5.patch, celestia-1.5.1.ebuild:
1.4 sci-astronomy/celestia/celestia-1.5.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?r1=1.3&r2=1.4
Index: celestia-1.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- celestia-1.5.1.ebuild 6 Nov 2008 00:07:30 -0000 1.3
+++ celestia-1.5.1.ebuild 6 Nov 2008 12:00:17 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.3 2008/11/06 00:07:30 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.4 2008/11/06 12:00:17 bicatali Exp $
inherit eutils flag-o-matic gnome2 kde-functions autotools
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="arts cairo gnome gtk kde lua nls pch theora threads"
+IUSE="arts cairo gnome gtk kde lua nls pch theora threads unicode"
RDEPEND="virtual/glu
media-libs/jpeg
@@ -104,6 +104,14 @@
-e '/AM_GCONF_SOURCE_2/d' \
configure.in || die "sed failed"
fi
+ if use unicode; then
+ pushd locale > /dev/null
+ for i in guide_{de,es,fr,it,nl,sv}.cel start_de.cel demo_nl.cel; do
+ iconv -f iso-8859-1 ${i} -t utf8 > ${i}.utf8
+ mv ${i}.utf8 ${i}
+ done
+ popd > /dev/null
+ fi
eautoreconf
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: ChangeLog celestia-1.5.1.ebuild
@ 2008-11-08 12:00 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 5+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-11-08 12:00 UTC (permalink / raw
To: gentoo-commits
nixnut 08/11/08 12:00:27
Modified: ChangeLog celestia-1.5.1.ebuild
Log:
Stable on ppc wrt bug 245168
(Portage version: 2.1.4.5)
Revision Changes Path
1.45 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.44&r2=1.45
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog 6 Nov 2008 12:00:17 -0000 1.44
+++ ChangeLog 8 Nov 2008 12:00:27 -0000 1.45
@@ -1,6 +1,9 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.44 2008/11/06 12:00:17 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.45 2008/11/08 12:00:27 nixnut Exp $
+
+ 08 Nov 2008; nixnut <nixnut@gentoo.org> celestia-1.5.1.ebuild:
+ Stable on ppc wrt bug 245168
06 Nov 2008; Sébastien Fabbro <bicatali@gentoo.org>
celestia-1.5.1.ebuild:
1.5 sci-astronomy/celestia/celestia-1.5.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?r1=1.4&r2=1.5
Index: celestia-1.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- celestia-1.5.1.ebuild 6 Nov 2008 12:00:17 -0000 1.4
+++ celestia-1.5.1.ebuild 8 Nov 2008 12:00:27 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.4 2008/11/06 12:00:17 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.5 2008/11/08 12:00:27 nixnut Exp $
inherit eutils flag-o-matic gnome2 kde-functions autotools
@@ -14,7 +14,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ppc ~ppc64 ~sparc ~x86"
IUSE="arts cairo gnome gtk kde lua nls pch theora threads unicode"
RDEPEND="virtual/glu
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: ChangeLog celestia-1.5.1.ebuild
@ 2010-01-12 2:18 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2010-01-12 2:18 UTC (permalink / raw
To: gentoo-commits
bicatali 10/01/12 02:18:48
Modified: ChangeLog
Removed: celestia-1.5.1.ebuild
Log:
Removed old
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Revision Changes Path
1.61 sci-astronomy/celestia/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.60&r2=1.61
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog 11 Jan 2010 22:13:49 -0000 1.60
+++ ChangeLog 12 Jan 2010 02:18:48 -0000 1.61
@@ -1,6 +1,11 @@
# ChangeLog for sci-astronomy/celestia
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.60 2010/01/11 22:13:49 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.61 2010/01/12 02:18:48 bicatali Exp $
+
+ 12 Jan 2010; Sébastien Fabbro <bicatali@gentoo.org>
+ -files/celestia-1.4.1-cfg.patch, -celestia-1.5.1.ebuild,
+ -files/celestia-1.5.1-arts.patch, -files/celestia-1.5.1-kde-3.5.patch:
+ Removed old
11 Jan 2010; Brent Baude <ranger@gentoo.org> celestia-1.6.0.ebuild:
stable ppc64, bug 292956
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-01-12 2:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-08 12:00 [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: ChangeLog celestia-1.5.1.ebuild Gysbert Wassenaar (nixnut)
-- strict thread matches above, loose matches on Subject: below --
2010-01-12 2:18 Sebastien Fabbro (bicatali)
2008-11-06 12:00 Sebastien Fabbro (bicatali)
2008-10-12 11:24 Markus Dittrich (markusle)
2008-06-24 17:20 Markus Dittrich (markusle)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox