games-strategy/wesnoth: Drop old
authorAndreas Sturmlechner <asturm@gentoo.org>
Sun, 3 Jun 2018 13:54:54 +0000 (15:54 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Wed, 6 Jun 2018 08:06:03 +0000 (10:06 +0200)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

games-strategy/wesnoth/Manifest
games-strategy/wesnoth/files/wesnothd.rc [deleted file]
games-strategy/wesnoth/wesnoth-1.12.6.ebuild [deleted file]

index 2a8b2573b38ed63411e62a11451aaa5bdf01cdfb..ecefe36c0dd3d6dfc8610c973272f02b5283711c 100644 (file)
@@ -1,3 +1,2 @@
-DIST wesnoth-1.12.6.tar.bz2 387869758 BLAKE2B 53328f8ebbaaabb266064fea57c0d28779183ba1b77ae8522c4dbb01c4a9ad9068d76307b48cec6576648132bf34f9a45efdb93ad36e03d035ed06e84711c9b6 SHA512 12ca3b5de8fd385b05cc8e76604f7aed68127a7542599d6e97cce793e10636e00bd65dcb088701e20ccc7191f41b1d67a00b291f885df880fac00d13d6fbde7a
 DIST wesnoth-1.14.1.tar.gz 481355736 BLAKE2B 2cc41a36706919bbc505a9a6726ea9b0fbfd5bfde677da937fdde2645587f4407fb6ed2f7271efaf1763f9ab69a57d153130291d5dc0a79862e554963dd37079 SHA512 0372eb9479d3d24dc4bf692a83fe310d5b4493989f18f0a23070ee19a4bee2672efd38babe1579b08a321e3acba1ede5823376619c8a90102f968e53cc6e3f02
 DIST wesnoth-1.14.2.tar.gz 489041516 BLAKE2B f38f3596edd97096e39ee1e87e13a3d0402d0f9f0f67f25ce1e4a28123abc62ca7b2410c8420a4091d505bf64219cdf92c1cfed562ae2f3705c37685d7c2c20e SHA512 010dcdeaf03d3855192d2480facbfce134459b71acb06515196968dd66b5e1fc40bd75eeeb8b7dd7fc30c9b43af004784d9907893c4b1d61e57436457afc30bb
diff --git a/games-strategy/wesnoth/files/wesnothd.rc b/games-strategy/wesnoth/files/wesnothd.rc
deleted file mode 100644 (file)
index f8662b0..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
-       use net
-}
-
-start() {
-       ebegin "Starting wesnothd"
-       start-stop-daemon --start --quiet -b -m \
-               --pidfile "GAMES_STATEDIR"/run/wesnothd/wesnothd.pid \
-               -c GAMES_USER_DED:GAMES_GROUP \
-               --exec "GAMES_BINDIR"/wesnothd
-       eend $?
-}
-
-stop() {
-       ebegin "Stopping wesnothd"
-       start-stop-daemon --stop --quiet --pidfile "GAMES_STATEDIR"/run/wesnothd/wesnothd.pid
-       eend $?
-}
diff --git a/games-strategy/wesnoth/wesnoth-1.12.6.ebuild b/games-strategy/wesnoth/wesnoth-1.12.6.ebuild
deleted file mode 100644 (file)
index 3c5d8cf..0000000
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils eutils multilib toolchain-funcs flag-o-matic games
-
-DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game"
-HOMEPAGE="http://www.wesnoth.org/"
-SRC_URI="mirror://sourceforge/wesnoth/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd"
-IUSE="dbus dedicated doc fribidi nls server"
-
-RDEPEND=">=media-libs/libsdl-1.2.7:0[joystick,video,X]
-       media-libs/sdl-net
-       !dedicated? (
-               >=media-libs/sdl-ttf-2.0.8
-               >=media-libs/sdl-mixer-1.2[vorbis]
-               >=media-libs/sdl-image-1.2[jpeg,png]
-               fribidi? ( dev-libs/fribidi )
-               dbus? ( sys-apps/dbus )
-               sys-libs/zlib
-               x11-libs/pango
-               dev-lang/lua:0
-               media-libs/fontconfig
-       )
-       >=dev-libs/boost-1.48:=[nls,threads]
-       virtual/libintl"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig
-       sys-devel/gettext"
-
-src_prepare() {
-       cmake-utils_src_prepare
-
-       if use dedicated || use server ; then
-               sed \
-                       -e "s:GAMES_BINDIR:${GAMES_BINDIR}:" \
-                       -e "s:GAMES_STATEDIR:${GAMES_STATEDIR}:" \
-                       -e "s/GAMES_USER_DED/${GAMES_USER_DED}/" \
-                       -e "s/GAMES_GROUP/${GAMES_GROUP}/" "${FILESDIR}"/wesnothd.rc \
-                       > "${T}"/wesnothd || die
-       fi
-       if ! use doc ; then
-               sed -i \
-                       -e '/manual/d' \
-                       doc/CMakeLists.txt || die
-       fi
-       # bug #472994
-       mv icons/wesnoth-icon-Mac.png icons/wesnoth-icon.png || die
-       mv icons/map-editor-icon-Mac.png icons/wesnoth_editor-icon.png || die
-
-       # respect LINGUAS (bug #483316)
-       if [[ ${LINGUAS+set} ]] ; then
-               local langs
-               for lang in $(cat po/LINGUAS)
-               do
-                       has $lang $LINGUAS && langs+="$lang "
-               done
-               echo "$langs" > po/LINGUAS || die
-       fi
-}
-
-src_configure() {
-       filter-flags -ftracer -fomit-frame-pointer
-       if [[ $(gcc-major-version) -eq 3 ]] ; then
-               filter-flags -fstack-protector
-               append-flags -fno-stack-protector
-       fi
-       # Work around eclass
-       append-flags -UNDEBUG
-       if use dedicated || use server ; then
-               mycmakeargs=(
-                       "-DENABLE_CAMPAIGN_SERVER=TRUE"
-                       "-DENABLE_SERVER=TRUE"
-                       "-DSERVER_UID=${GAMES_USER_DED}"
-                       "-DSERVER_GID=${GAMES_GROUP}"
-                       "-DFIFO_DIR=${GAMES_STATEDIR}/run/wesnothd"
-                       )
-       else
-               mycmakeargs=(
-                       $(cmake-utils_use_enable fribidi FRIBIDI)
-                       "-DENABLE_CAMPAIGN_SERVER=FALSE"
-                       "-DENABLE_SERVER=FALSE"
-                       )
-       fi
-       mycmakeargs+=(
-               $(cmake-utils_use_enable !dedicated GAME)
-               $(cmake-utils_use_enable !dedicated ENABLE_DESKTOP_ENTRY)
-               $(cmake-utils_use_enable nls NLS)
-               $(cmake-utils_use_enable dbus NOTIFICATIONS)
-               "-DCMAKE_VERBOSE_MAKEFILE=TRUE"
-               "-DENABLE_STRICT_COMPILATION=FALSE"
-               "-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
-               "-DDATAROOTDIR=${GAMES_DATADIR}"
-               "-DBINDIR=${GAMES_BINDIR}"
-               "-DICONDIR=/usr/share/pixmaps"
-               "-DDESKTOPDIR=/usr/share/applications"
-               "-DLOCALEDIR=/usr/share/locale"
-               "-DMANDIR=/usr/share/man"
-               "-DDOCDIR=/usr/share/doc/${PF}"
-               )
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       cmake-utils_src_compile
-}
-
-src_install() {
-       DOCS="README.md changelog players_changelog" cmake-utils_src_install
-       if use dedicated || use server; then
-               keepdir "${GAMES_STATEDIR}/run/wesnothd"
-               doinitd "${T}"/wesnothd
-       fi
-       prepgamesdirs
-}