* [gentoo-commits] gentoo-x86 commit in games-simulation/secondlife: secondlife-1.23_rc5.ebuild ChangeLog secondlife-1.23_rc4-r1.ebuild
@ 2009-10-23 4:08 Joe Peterson (lavajoe)
0 siblings, 0 replies; only message in thread
From: Joe Peterson (lavajoe) @ 2009-10-23 4:08 UTC (permalink / raw
To: gentoo-commits
lavajoe 09/10/23 04:08:02
Modified: ChangeLog
Added: secondlife-1.23_rc5.ebuild
Removed: secondlife-1.23_rc4-r1.ebuild
Log:
Add new 1.23_rc5; remove old
(Portage version: 2.1.7.1/cvs/Linux x86_64)
Revision Changes Path
1.6 games-simulation/secondlife/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/secondlife/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/secondlife/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/secondlife/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-simulation/secondlife/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 22 Aug 2009 21:04:59 -0000 1.5
+++ ChangeLog 23 Oct 2009 04:08:01 -0000 1.6
@@ -1,6 +1,16 @@
# ChangeLog for games-simulation/secondlife
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-simulation/secondlife/ChangeLog,v 1.5 2009/08/22 21:04:59 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-simulation/secondlife/ChangeLog,v 1.6 2009/10/23 04:08:01 lavajoe Exp $
+
+*secondlife-1.23_rc5 (23 Oct 2009)
+
+ 23 Oct 2009; Joe Peterson <lavajoe@gentoo.org>
+ -secondlife-1.23_rc4-r1.ebuild, +secondlife-1.23_rc5.ebuild,
+ +files/secondlife-1.23_rc5-amd64-audio-streaming-fix.patch,
+ +files/secondlife-1.23_rc5-fix-memset-error.patch,
+ +files/secondlife-1.23_rc5-fix-printf-format-error.patch,
+ +files/secondlife-1.23_rc5-fix-uninitialized-gdkcolor.patch:
+ Add new 1.23_rc5; remove old
22 Aug 2009; William Hubbs <williamh@gentoo.org>
secondlife-1.23_rc4-r1.ebuild:
1.1 games-simulation/secondlife/secondlife-1.23_rc5.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/secondlife/secondlife-1.23_rc5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/secondlife/secondlife-1.23_rc5.ebuild?rev=1.1&content-type=text/plain
Index: secondlife-1.23_rc5.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/secondlife/secondlife-1.23_rc5.ebuild,v 1.1 2009/10/23 04:08:01 lavajoe Exp $
inherit eutils multilib games versionator
SECONDLIFE_REVISION=136262
SECONDLIFE_MAJOR_VER=$(get_version_component_range 1-2)
SECONDLIFE_MINOR_VER=$(get_version_component_range 3)
SECONDLIFE_MINOR_VER=${SECONDLIFE_MINOR_VER/rc/}
MY_P="slviewer-src-viewer-rc-frozen-${SECONDLIFE_MAJOR_VER}.${SECONDLIFE_MINOR_VER}.${SECONDLIFE_REVISION}"
DESCRIPTION="The Second Life (an online, 3D virtual world) viewer"
HOMEPAGE="http://secondlife.com/"
SRC_URI="http://automated-builds-secondlife-com.s3.amazonaws.com/viewer-rc-frozen/${MY_P}.tar.gz http://automated-builds-secondlife-com.s3.amazonaws.com/viewer-rc-frozen/slviewer-artwork-viewer-rc-frozen-${SECONDLIFE_MAJOR_VER}.${SECONDLIFE_MINOR_VER}.${SECONDLIFE_REVISION}.zip"
LICENSE="GPL-2-with-Linden-Lab-FLOSS-exception Epinions"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="sys-libs/glibc
sys-apps/dbus
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/libXext
>=x11-libs/gtk+-2.0
x11-libs/libXinerama
dev-libs/libgcrypt
dev-libs/libgpg-error
dev-libs/openssl
dev-libs/apr
dev-libs/apr-util
dev-libs/boost
dev-libs/elfio
dev-libs/expat
dev-libs/xmlrpc-epi
dev-util/cmake
media-libs/freetype
media-libs/libogg
media-libs/libsdl
media-libs/libvorbis
media-libs/gstreamer
media-plugins/gst-plugins-meta
media-libs/fmod
media-libs/jpeg
media-libs/openjpeg
net-libs/gnutls
net-misc/curl
net-dns/c-ares
sys-libs/zlib
~virtual/libstdc++-3.3
virtual/glu
virtual/opengl
media-libs/openal
media-libs/freealut"
RDEPEND="${DEPEND}"
S="${WORKDIR}/linden"
use amd64 && ARCH_LIBS_DIR="x86_64-linux"
use x86 && ARCH_LIBS_DIR="i686-linux"
src_unpack() {
unpack ${A}
cd "${S}"
# On 64-bit systems, we need to uncomment LL_BAD_OPENAL_DRIVER=x
# and comment out the amd64 streaming disable to fix streaming audio.
use amd64 && epatch "${FILESDIR}/${P}-amd64-audio-streaming-fix.patch"
# Disable NDOF (joystick) that will not compile
epatch "${FILESDIR}/${PN}-disable-ndof.patch"
# Fix uninitialized GdkColor
epatch "${FILESDIR}/${P}-fix-uninitialized-gdkcolor.patch"
# Fix memset used with constant zero length parameter error
epatch "${FILESDIR}/${P}-fix-memset-error.patch"
# Fix printf format type error
epatch "${FILESDIR}/${P}-fix-printf-format-error.patch"
}
src_compile() {
cd "${S}/indra"
./develop.py --standalone configure || die
./develop.py --standalone build || die
}
src_install() {
cd "${S}"/indra/viewer-*/newview/packaged || die
dodoc README-*.txt licenses.txt || die
rm README-*.txt licenses.txt || die
insinto /usr/share/secondlife
doins secondlife_icon.png || die
rm secondlife_icon.png || die
dodir /usr/lib/${PN} || die
#cp -dR bin secondlife *.sh "${D}"/usr/lib/${PN} || die
#rm -r bin secondlife *.sh || die
cp -dR * "${D}"/usr/lib/${PN} || die
chmod o-x "${D}"/usr/lib/${PN}/bin/* "${D}"/usr/lib/${PN}/secondlife "${D}"/usr/lib/${PN}/*.sh || die
chgrp games "${D}"/usr/lib/${PN}/bin/* "${D}"/usr/lib/${PN}/secondlife "${D}"/usr/lib/${PN}/*.sh || die
games_make_wrapper secondlife "./secondlife --set VersionChannelName Gentoo" /usr/lib/${PN} /usr/lib/${PN}
make_desktop_entry secondlife "Second Life" /usr/share/${PN}/secondlife_icon.png
prepgamesdirs
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-10-23 4:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-23 4:08 [gentoo-commits] gentoo-x86 commit in games-simulation/secondlife: secondlife-1.23_rc5.ebuild ChangeLog secondlife-1.23_rc4-r1.ebuild Joe Peterson (lavajoe)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox