summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-02-09 21:43:14 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-02-09 21:43:14 +0000
commitbc7c1ee9f530b2ba75b5a27d805b4033565df5a4 (patch)
tree131fbc4ca6569f291f5d177fcc8d56297bb85302 /games-arcade
parentRemoved older versions in same slot (diff)
downloadgentoo-2-bc7c1ee9f530b2ba75b5a27d805b4033565df5a4.tar.gz
gentoo-2-bc7c1ee9f530b2ba75b5a27d805b4033565df5a4.tar.bz2
gentoo-2-bc7c1ee9f530b2ba75b5a27d805b4033565df5a4.zip
increase boost dep to avoid missing boost_thread library (bug #209357)
(Portage version: 2.1.3.19)
Diffstat (limited to 'games-arcade')
-rw-r--r--games-arcade/ultrastar-ng/ChangeLog9
-rw-r--r--games-arcade/ultrastar-ng/ultrastar-ng-0.1.4.ebuild69
-rw-r--r--games-arcade/ultrastar-ng/ultrastar-ng-0.2.1-r1.ebuild9
-rw-r--r--games-arcade/ultrastar-ng/ultrastar-ng-0.2.1.ebuild84
4 files changed, 10 insertions, 161 deletions
diff --git a/games-arcade/ultrastar-ng/ChangeLog b/games-arcade/ultrastar-ng/ChangeLog
index 11dacaecb0a9..32df12020383 100644
--- a/games-arcade/ultrastar-ng/ChangeLog
+++ b/games-arcade/ultrastar-ng/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for games-arcade/ultrastar-ng
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/ultrastar-ng/ChangeLog,v 1.4 2007/12/03 22:03:13 tupone Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/ultrastar-ng/ChangeLog,v 1.5 2008/02/09 21:43:14 mr_bones_ Exp $
+
+ 09 Feb 2008; Michael Sterrett <mr_bones_@gentoo.org>
+ -ultrastar-ng-0.1.4.ebuild, -ultrastar-ng-0.2.1.ebuild,
+ ultrastar-ng-0.2.1-r1.ebuild:
+ increase boost dep to avoid missing boost_thread library (bug #209357)
*ultrastar-ng-0.2.1-r1 (03 Dec 2007)
diff --git a/games-arcade/ultrastar-ng/ultrastar-ng-0.1.4.ebuild b/games-arcade/ultrastar-ng/ultrastar-ng-0.1.4.ebuild
deleted file mode 100644
index 7f6c44ad6e9f..000000000000
--- a/games-arcade/ultrastar-ng/ultrastar-ng-0.1.4.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/ultrastar-ng/ultrastar-ng-0.1.4.ebuild,v 1.3 2007/07/25 00:10:09 nyhm Exp $
-
-inherit eutils games
-
-MY_PN=UltraStar-ng
-MY_P=${MY_PN}-${PV}
-DESCRIPTION="SingStar GPL clone"
-HOMEPAGE="http://sourceforge.net/projects/ultrastar-ng/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="novideo opengl xine"
-
-RDEPEND=">=sci-libs/fftw-3
- gnome-base/librsvg
- media-libs/alsa-lib
- media-libs/sdl-image
- media-libs/sdl-gfx
- xine? ( media-libs/xine-lib )
- !xine? ( media-libs/gstreamer )
- opengl? (
- virtual/opengl
- virtual/glu
- )
- !novideo? ( media-libs/smpeg )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- games_pkg_setup
- if use opengl && ! built_with_use media-libs/libsdl opengl; then
- eerror "opengl flag set, but libsdl wasn't build with opengl support"
- fi
-}
-
-src_compile() {
- local myconf
- if use novideo; then
- myconf="--with-video=disable"
- else
- myconf="--with-video=smpeg"
- fi
- if use opengl; then
- myconf="$myconf --with-graphic-driver=opengl"
- else
- myconf="$myconf --with-graphic-driver=sdl"
- fi
- if use xine; then
- myconf="$myconf --with-audio=xine"
- else
- myconf="$myconf --with-audio=gstreamer"
- fi
- egamesconf ${myconf} || die "egamesconf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- keepdir "${GAMES_DATADIR}"/${PN}/songs
- mv "${D}${GAMES_DATADIR}"/{applications,pixmaps} "${D}"/usr/share/
- dodoc AUTHORS ChangeLog README TODO
- prepgamesdirs
-}
diff --git a/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1-r1.ebuild b/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1-r1.ebuild
index 8c31da8e3354..5abc53ff4f96 100644
--- a/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1-r1.ebuild
+++ b/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1-r1.ebuild,v 1.4 2007/12/04 00:04:30 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1-r1.ebuild,v 1.5 2008/02/09 21:43:14 mr_bones_ Exp $
inherit eutils games
@@ -24,7 +24,7 @@ KEYWORDS="~amd64 ~x86"
IUSE="novideo opengl xine debug alsa gstreamer portaudio songs"
RDEPEND="gnome-base/librsvg
- dev-libs/boost
+ >=dev-libs/boost-1.34
x11-libs/pango
media-libs/sdl-image
media-libs/sdl-gfx
@@ -48,9 +48,6 @@ pkg_setup() {
if use opengl && ! built_with_use media-libs/libsdl opengl ; then
eerror "opengl flag set, but libsdl wasn't build with opengl support"
fi
- if ! built_with_use --missing true dev-libs/boost threads ; then
- eerror "Please emerge dev-libs/boost with USE=threads"
- fi
}
src_compile() {
diff --git a/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1.ebuild b/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1.ebuild
deleted file mode 100644
index ed1b34040757..000000000000
--- a/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/ultrastar-ng/ultrastar-ng-0.2.1.ebuild,v 1.5 2007/11/07 17:01:36 mr_bones_ Exp $
-
-inherit eutils games
-
-MY_PN=UltraStar-ng
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="SingStar GPL clone"
-HOMEPAGE="http://sourceforge.net/projects/ultrastar-ng/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="novideo opengl xine debug alsa gstreamer portaudio"
-
-RDEPEND="gnome-base/librsvg
- dev-libs/boost
- x11-libs/pango
- media-libs/sdl-image
- media-libs/sdl-gfx
- xine? ( media-libs/xine-lib )
- !xine? ( media-libs/gstreamer )
- opengl? (
- virtual/opengl
- virtual/glu
- )
- alsa? ( media-libs/alsa-lib )
- portaudio? ( media-libs/portaudio )
- gstreamer? ( >=media-libs/gstreamer-0.10 )
- !novideo? ( media-libs/smpeg )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- games_pkg_setup
- if use opengl && ! built_with_use media-libs/libsdl opengl ; then
- eerror "opengl flag set, but libsdl wasn't build with opengl support"
- fi
- if ! built_with_use --missing true dev-libs/boost threads ; then
- eerror "Please emerge dev-libs/boost with USE=threads"
- fi
-}
-
-src_compile() {
- local myconf
-
- if use novideo; then
- myconf="--with-video=disable"
- else
- myconf="--with-video=smpeg"
- fi
- if use opengl; then
- myconf="$myconf --with-graphic-driver=opengl"
- else
- myconf="$myconf --with-graphic-driver=sdl"
- fi
- if use xine; then
- myconf="$myconf --with-audio=xine"
- else
- myconf="$myconf --with-audio=gstreamer"
- fi
-
- egamesconf \
- ${myconf} \
- $(use_enable debug) \
- $(use_enable portaudio record-portaudio) \
- $(use_enable gstreamer record-gst) \
- $(use_enable alsa record-alsa) \
- || die
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- keepdir "${GAMES_DATADIR}"/${PN}/songs
- mv "${D}${GAMES_DATADIR}"/{applications,pixmaps} "${D}"/usr/share/
- dodoc AUTHORS ChangeLog README TODO
- prepgamesdirs
-}