summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <nyhm@gentoo.org>2008-01-22 08:35:02 +0000
committerTristan Heaven <nyhm@gentoo.org>2008-01-22 08:35:02 +0000
commit1d7c448b8c8dd3a1269ad0dc1b427515efcf7ee7 (patch)
tree9ecf1e98b1f06548a836fd59b47357576d41040e /games-strategy
parentStable for HPPA too. (diff)
downloadgentoo-2-1d7c448b8c8dd3a1269ad0dc1b427515efcf7ee7.tar.gz
gentoo-2-1d7c448b8c8dd3a1269ad0dc1b427515efcf7ee7.tar.bz2
gentoo-2-1d7c448b8c8dd3a1269ad0dc1b427515efcf7ee7.zip
rm old versions
(Portage version: 2.1.4)
Diffstat (limited to 'games-strategy')
-rw-r--r--games-strategy/widelands/files/digest-widelands-0.0.103
-rw-r--r--games-strategy/widelands/files/digest-widelands-0.0.9.5-r13
-rw-r--r--games-strategy/widelands/files/widelands-0.0.10-build.patch51
-rw-r--r--games-strategy/widelands/files/widelands-0.0.9-amd64.patch14
-rw-r--r--games-strategy/widelands/files/widelands-0.0.9.5-gcc41.patch5
-rw-r--r--games-strategy/widelands/files/widelands-makefile.patch54
-rw-r--r--games-strategy/widelands/widelands-0.0.10.ebuild71
-rw-r--r--games-strategy/widelands/widelands-0.0.9.5-r1.ebuild75
8 files changed, 0 insertions, 276 deletions
diff --git a/games-strategy/widelands/files/digest-widelands-0.0.10 b/games-strategy/widelands/files/digest-widelands-0.0.10
deleted file mode 100644
index 02b6abd30744..000000000000
--- a/games-strategy/widelands/files/digest-widelands-0.0.10
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 9e452baf7b8f22a27b4e371e2150e017 widelands-build10-source.tar.bz2 28526726
-RMD160 65f85d7b7ab756560bd0bc1a470ac2b8775caadc widelands-build10-source.tar.bz2 28526726
-SHA256 f67508066db1739839945f8c814a71a0e4a43904ff4a7f4e7cd3c269bcda18af widelands-build10-source.tar.bz2 28526726
diff --git a/games-strategy/widelands/files/digest-widelands-0.0.9.5-r1 b/games-strategy/widelands/files/digest-widelands-0.0.9.5-r1
deleted file mode 100644
index ba1068bd0424..000000000000
--- a/games-strategy/widelands/files/digest-widelands-0.0.9.5-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 7bced82bda4b83d884da3e5b0143b2b4 widelands-b9half-source.tar.bz2 10989969
-RMD160 b9382690dfec3f789c0db7f0163f7392d889cfb0 widelands-b9half-source.tar.bz2 10989969
-SHA256 a883b410fbe3089233926f3b2314fb3ccc9262b00a1aadbda9f7d73ea572ea9b widelands-b9half-source.tar.bz2 10989969
diff --git a/games-strategy/widelands/files/widelands-0.0.10-build.patch b/games-strategy/widelands/files/widelands-0.0.10-build.patch
deleted file mode 100644
index 2695b9d393e6..000000000000
--- a/games-strategy/widelands/files/widelands-0.0.10-build.patch
+++ /dev/null
@@ -1,51 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -26,7 +26,7 @@
-
- #most current glibc systems implicitly contain libintl.so
- ifndef IMPLICIT_LIBINTL
--IMPLICIT_LIBINTL:=NO
-+IMPLICIT_LIBINTL:=YES
- endif
-
- # Is this a cross compile?
-@@ -106,11 +106,9 @@
- BUILD:=$(strip $(BUILD))
-
- ifeq ($(BUILD),release)
--OPTIMIZE:=yes
- # heavy optimization
- #ADD_CFLAGS:=$(ADD_CFLAGS) -fomit-frame-pointer -finline-functions -ffast-math -funroll-loops -funroll-all-loops -fexpensive-optimizations
- # !!!! -fomit-frame-pointer breaks execeptions !!!!
--ADD_CFLAGS:=$(ADD_CFLAGS) -finline-functions -ffast-math -funroll-loops -funroll-all-loops -fexpensive-optimizations
- else
- ifeq ($(BUILD),profile)
- OPTIMIZE:=yes
-@@ -160,9 +158,8 @@
- # Object files and directories, final compilation flags
-
- OBJECT_DIR:=src/$(TARGET)-$(BUILD)
--CFLAGS:=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS)
--CXXFLAGS:=$(CFLAGS)
--LDFLAGS:=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net
-+CXXFLAGS+=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS)
-+LDFLAGS+=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net
-
- ##############################################################################
- # Building
-@@ -217,13 +214,13 @@
-
- $(OBJECT_DIR)/widelands: $(OBJ)
- @echo "===> LD $@"
-- $(Q)$(CXX) $(OBJ) -o $@ $(LDFLAGS) $(CFLAGS)
-+ $(CXX) $(OBJ) -o $@ $(LDFLAGS) $(CXXFLAGS)
-
- -include $(DEP)
-
- $(OBJECT_DIR)/%.o: src/%.cc src/build_id.h src/config.h
- @echo "===> CXX $<"
-- $(Q)$(CXX) -pipe $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
-+ $(CXX) $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
- $(Q)sed -e 's@^\(.*\)\.o:@\1.d \1.o:@' $@.d > $(OBJECT_DIR)/$*.d
- $(Q)rm $@.d
-
diff --git a/games-strategy/widelands/files/widelands-0.0.9-amd64.patch b/games-strategy/widelands/files/widelands-0.0.9-amd64.patch
deleted file mode 100644
index c29031497be9..000000000000
--- a/games-strategy/widelands/files/widelands-0.0.9-amd64.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -urN widelands.orig/src/machdep.h widelands/src/machdep.h
---- widelands.orig/src/machdep.h 2005-05-04 22:31:16.000000000 -0400
-+++ widelands/src/machdep.h 2005-05-04 22:31:37.000000000 -0400
-@@ -36,6 +36,10 @@
- #undef P_BIG_ENDIAN
- #define P_LITTLE_ENDIAN
- #undef P_ALIGNMENT
-+#elif defined (__x86_64__)
-+#undef P_BIG_ENDIAN
-+#define P_LITTLE_ENDIAN
-+#undef P_ALIGNMENT
- #else
- #error architecture not supported
- #endif
diff --git a/games-strategy/widelands/files/widelands-0.0.9.5-gcc41.patch b/games-strategy/widelands/files/widelands-0.0.9.5-gcc41.patch
deleted file mode 100644
index 493eaf029f41..000000000000
--- a/games-strategy/widelands/files/widelands-0.0.9.5-gcc41.patch
+++ /dev/null
@@ -1,5 +0,0 @@
---- src/ui/ui_fs_menus/fullscreen_menu_options.h.orig 2006-01-23 21:12:33.000000000 +0100
-+++ src/ui/ui_fs_menus/fullscreen_menu_options.h 2006-01-23 21:22:31.000000000 +0100
-@@ -66 +66 @@
-- Options_Ctrl::Options_Struct Fullscreen_Menu_Options::get_values();
-+ Options_Ctrl::Options_Struct get_values();
diff --git a/games-strategy/widelands/files/widelands-makefile.patch b/games-strategy/widelands/files/widelands-makefile.patch
deleted file mode 100644
index 41b2b1cbacdc..000000000000
--- a/games-strategy/widelands/files/widelands-makefile.patch
+++ /dev/null
@@ -1,54 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -61,9 +61,6 @@
- # release optimized
- # profile optimized, debugging symbols, profiling
- #
--ifndef BUILD
--BUILD:=debug
--endif
-
- endif
-
-@@ -124,11 +121,6 @@
- BUILD:=debug
- OPTIMIZE:=yes
- DEBUG:=yes
--else
--BUILD:=debug-no-parachute
--OPTIMIZE:=YES
--DEBUG:=YES
--ADD_CFLAGS:=-DNO_PARACHUTE
- endif
- endif
- endif
-@@ -139,7 +131,7 @@
- endif
-
- ifdef DEBUG
--ADD_CFLAGS += -g -DDEBUG -fmessage-length=0
-+ADD_CFLAGS += -DDEBUG
- else
- ADD_CFLAGS += -DNDEBUG
- endif
-@@ -160,9 +152,9 @@
- # Object files and directories, final compilation flags
-
- OBJECT_DIR:=src/$(TARGET)-$(BUILD)
--CFLAGS:=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS)
-+CFLAGS:=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS) $(CFLAGS)
- CXXFLAGS:=$(CFLAGS)
--LDFLAGS:=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net
-+LDFLAGS:=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net $(LDFLAGS)
-
- ##############################################################################
- # Building
-@@ -220,7 +212,7 @@
- -include $(DEP)
-
- $(OBJECT_DIR)/%.o: src/%.cc
-- $(CXX) -pipe $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
-+ $(CXX) $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
- sed -e 's@^\(.*\)\.o:@\1.d \1.o:@' $@.d > $(OBJECT_DIR)/$*.d
- rm $@.d
-
diff --git a/games-strategy/widelands/widelands-0.0.10.ebuild b/games-strategy/widelands/widelands-0.0.10.ebuild
deleted file mode 100644
index ed870d3471c5..000000000000
--- a/games-strategy/widelands/widelands-0.0.10.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/widelands/widelands-0.0.10.ebuild,v 1.1 2007/03/21 20:56:02 nyhm Exp $
-
-inherit eutils flag-o-matic toolchain-funcs versionator games
-
-MY_PV=$(get_version_component_range 3)
-DESCRIPTION="A game similar to Settlers 2"
-HOMEPAGE="http://www.widelands.org/"
-SRC_URI="mirror://sourceforge/${PN}/${PN}-build${MY_PV}-source.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="nls"
-
-RDEPEND="media-libs/libsdl
- media-libs/sdl-image
- media-libs/sdl-mixer
- media-libs/sdl-net
- media-libs/sdl-ttf
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- rm -f $(find -name SConscript)
-
- epatch "${FILESDIR}"/${P}-build.patch
-
- sed -i 's:__ppc__:__PPC__:' src/s2map.cc \
- || die "sed s2map.cc failed"
- sed -i "s:/usr/share/games:${GAMES_DATADIR}:" src/wlapplication.cc \
- || die "sed wlapplication.cc failed"
-}
-
-src_compile() {
- filter-flags -fomit-frame-pointer
- emake CXX=$(tc-getCXX) || die "emake failed"
-
- if use nls ; then
- cd locale
- ../utils/buildcat.py || die
- fi
-}
-
-src_install() {
- dogamesbin ${PN} || die "dogamesbin failed"
-
- insinto "${GAMES_DATADIR}"/${PN}
- doins -r campaigns fonts maps music pics sound tribes txts worlds \
- || die "doins failed"
-
- insinto "${GAMES_DATADIR}"/${PN}/locale
- local d
- for d in locale/* ; do
- if [[ -d ${d} ]] ; then
- doins -r ${d} || die "doins ${d} failed"
- fi
- done
-
- newicon pics/wl-ico-48.png ${PN}.png
- make_desktop_entry ${PN} Widelands
-
- dodoc ChangeLog CREDITS README.developers
- prepgamesdirs
-}
diff --git a/games-strategy/widelands/widelands-0.0.9.5-r1.ebuild b/games-strategy/widelands/widelands-0.0.9.5-r1.ebuild
deleted file mode 100644
index 81e382005398..000000000000
--- a/games-strategy/widelands/widelands-0.0.9.5-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/widelands/widelands-0.0.9.5-r1.ebuild,v 1.3 2007/02/08 10:02:30 nyhm Exp $
-
-inherit eutils flag-o-matic toolchain-funcs games
-
-DESCRIPTION="A game similar to Settlers 2"
-HOMEPAGE="http://www.widelands.org/"
-SRC_URI="mirror://sourceforge/${PN}/${PN}-b${PV:4:1}half-source.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="debug nls"
-
-RDEPEND="media-libs/libpng
- media-libs/libsdl
- media-libs/sdl-image
- media-libs/sdl-mixer
- media-libs/sdl-net
- media-libs/sdl-ttf
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-S=${WORKDIR}/${PN}-b9half
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch \
- "${FILESDIR}"/${PN}-0.0.9-amd64.patch \
- "${FILESDIR}"/${PN}-makefile.patch \
- "${FILESDIR}"/${P}-gcc41.patch
- sed -i -e "s:__ppc__:__PPC__:g" "${S}"/src/machdep.h || die "sed failed"
-
- if use nls ; then
- cd "${S}"/locale
- cp ../utils/*.py .
- fi
-}
-
-src_compile() {
- filter-flags -fomit-frame-pointer
-
- emake \
- CXX=$(tc-getCXX) \
- IMPLICIT_LIBINTL=1 \
- $(use debug && echo DEBUG=1) \
- || die "emake failed"
-
- if use nls ; then
- cd "${S}"/locale
- ./buildcat.py
- rm -f *.p* .cvsignore tmp
- fi
-}
-
-src_install() {
- local dir=${GAMES_DATADIR}/${PN}
-
- insinto "${dir}"
- doins -r fonts maps pics tribes worlds campaigns $(use nls && echo locale) \
- || die "doins failed"
-
- exeinto "${dir}"
- doexe ${PN} || die "doexe failed"
- games_make_wrapper widelands ./widelands "${dir}"
-
- dodoc AUTHORS ChangeLog README.developers
-
- newicon pics/wl-ico-48.png ${PN}.png
- make_desktop_entry ${PN} Widelands
- prepgamesdirs
-}