diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2015-03-03 18:21:52 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2015-03-03 18:21:52 +0300 |
commit | 388312c023c755be814eb5f398d62301017b8240 (patch) | |
tree | 6a130f4684231b1cd072d999b3fc453d5b96a6ad /games-action | |
parent | 7e7fa358ee26b7df34c4d70334bbd63af762acdd (diff) |
moved minetest to games-engines
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/minetest/files/minetestserver.confd | 16 | ||||
-rw-r--r-- | games-action/minetest/files/minetestserver.initd | 36 | ||||
-rw-r--r-- | games-action/minetest/metadata.xml | 45 | ||||
-rw-r--r-- | games-action/minetest/minetest-scm.ebuild | 131 |
4 files changed, 0 insertions, 228 deletions
diff --git a/games-action/minetest/files/minetestserver.confd b/games-action/minetest/files/minetestserver.confd deleted file mode 100644 index ec3d013..0000000 --- a/games-action/minetest/files/minetestserver.confd +++ /dev/null @@ -1,16 +0,0 @@ -# /etc/conf.d/minetest-server: config file for /etc/init.d/minetest-server - -# user -USER="minetest" - -# group -GROUP="@GROUP@" - -# pidfile -PIDFILE="/var/run/minetest.pid" - -# executable -MINETESTBIN="@BINDIR@/minetestserver" - -# additional arguments for the server -ARGS="--logfile /var/lib/minetest/minetest-server.log" diff --git a/games-action/minetest/files/minetestserver.initd b/games-action/minetest/files/minetestserver.initd deleted file mode 100644 index e0a33d9..0000000 --- a/games-action/minetest/files/minetestserver.initd +++ /dev/null @@ -1,36 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -description="Minetest dedicated server" - -depend() { - need net -} - -start() { - ebegin "starting server" - start-stop-daemon \ - --start \ - --quiet \ - --make-pidfile \ - --pidfile "${PIDFILE}" \ - --background \ - --user ${USER} \ - --group ${GROUP} \ - --exec "${MINETESTBIN}" -- ${ARGS} - - eend $? -} - -stop() { - ebegin "stopping server" - start-stop-daemon \ - --stop \ - --signal 15 \ - --quiet \ - --pidfile "${PIDFILE}" - - eend $? -} diff --git a/games-action/minetest/metadata.xml b/games-action/minetest/metadata.xml deleted file mode 100644 index 351ab36..0000000 --- a/games-action/minetest/metadata.xml +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>hasufell@gentoo.org</email> - <name>Julian Ospald</name> - </maintainer> - <longdescription lang="en"> - Minetest is an infinite-world block sandbox game and a game - engine, inspired by InfiniMiner, Minecraft and the like. It has - been in development and use since October 2010. - - It is Free and Open Source Software, released under the LGPL 2.1 - or later, available for Windows, Mac OS X and Linux. - - Minetest is developed by a random bunch of lunatics. - - Minetest is designed to be simple, stable and portable. It is - lightweight enough to run on fairly old hardware. It currently - runs playably on a laptop with Intel 945GM graphics. Though, as - for the CPU, dualcore is recommended. - - Features - * Walk around, dig and build in an infinite voxel world, - and craft stuff from raw materials to help you along the way. - * Simplistic Modding API that supports many kinds of additions - and modifications to the game. - * Multiplayer support for tens of players, via servers hosted by - users. - * Voxel based lighting with gameplay consequences - (light caves and buildings with torches) - * Almost infinite world and a beautiful map generator. - * Runs natively on Windows, Linux, OS X and FreeBSD. - * Supports multiple languages, translated by the community. - </longdescription> - <use> - <flag name="leveldb">Enable LevelDB backend</flag> - <flag name="server">Build minetest server</flag> - </use> - <upstream> - <bugs-to>https://github.com/minetest/minetest/issues</bugs-to> - <doc lang="en">http://wiki.minetest.net/Main_Page</doc> - <remote-id type="github">minetest/minetest</remote-id> - </upstream> -</pkgmetadata> diff --git a/games-action/minetest/minetest-scm.ebuild b/games-action/minetest/minetest-scm.ebuild deleted file mode 100644 index 67965d8..0000000 --- a/games-action/minetest/minetest-scm.ebuild +++ /dev/null @@ -1,131 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 -inherit eutils cmake-utils git-2 gnome2-utils vcs-snapshot user games - -DESCRIPTION="An InfiniMiner/Minecraft inspired game" -HOMEPAGE="http://minetest.net/" -EGIT_REPO_URI="git://github.com/minetest/${PN}.git" - -LICENSE="LGPL-2.1+ CC-BY-SA-3.0" -SLOT="0" -KEYWORDS="" -IUSE="+curl dedicated gles leveldb luajit nls redis server +sound +truetype" - -RDEPEND="dev-db/sqlite:3 - >=dev-games/irrlicht-1.8-r2 - !luajit? ( >=dev-lang/lua-5.1.4 ) - sys-libs/zlib - curl? ( net-misc/curl ) - !dedicated? ( - app-arch/bzip2 - media-libs/libpng:0 - virtual/jpeg - virtual/opengl - x11-libs/libX11 - x11-libs/libXxf86vm - sound? ( - media-libs/libogg - media-libs/libvorbis - media-libs/openal - ) - truetype? ( media-libs/freetype:2 ) - ) - leveldb? ( dev-libs/leveldb ) - luajit? ( dev-lang/luajit:2 ) - redis? ( - dev-db/redis - dev-libs/hiredis - ) - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -pkg_setup() { - games_pkg_setup - - if use server || use dedicated ; then - enewuser ${PN} -1 -1 /var/lib/${PN} ${GAMES_GROUP} - fi -} - -src_unpack() { - git-2_src_unpack -} - -src_prepare() { - # set paths - sed \ - -e "s#@BINDIR@#${GAMES_BINDIR}#g" \ - -e "s#@GROUP@#${GAMES_GROUP}#g" \ - "${FILESDIR}"/minetestserver.confd > "${T}"/minetestserver.confd || die -} - -src_configure() { - local mycmakeargs=( - -DRUN_IN_PLACE=0 - -DCUSTOM_SHAREDIR="${GAMES_DATADIR}/${PN}" - -DCUSTOM_BINDIR="${GAMES_BINDIR}" - -DCUSTOM_DOCDIR="/usr/share/doc/${PF}" - -DCUSTOM_LOCALEDIR="/usr/share/locale" - $(usex dedicated "-DBUILD_SERVER=ON -DBUILD_CLIENT=OFF" "$(cmake-utils_use_build server SERVER) -DBUILD_CLIENT=ON") - $(cmake-utils_use_enable nls GETTEXT) - $(cmake-utils_use_enable curl CURL) - $(cmake-utils_use_enable truetype FREETYPE) - $(cmake-utils_use_enable sound SOUND) - $(cmake-utils_use_enable leveldb LEVELDB) - $(cmake-utils_use_enable redis REDIS) - $(cmake-utils_use_enable gles GLES) - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - - if use server || use dedicated ; then - newinitd "${FILESDIR}"/minetestserver.initd minetest-server - newconfd "${T}"/minetestserver.confd minetest-server - fi - - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update - - if ! use dedicated ; then - elog - elog "optional dependencies:" - elog " games-action/minetest_game (official mod)" - elog " games-action/minetest_common (official mod)" - elog " games-action/minetest_build (official mod)" - elog " games-action/minetest_survival (official mod)" - elog - fi - - if use server || use dedicated ; then - elog - elog "Configure your server via /etc/conf.d/minetest-server" - elog "The user \"minetest\" is created with /var/lib/${PN} homedir." - elog "Default logfile is ~/minetest-server.log" - elog - fi -} - -pkg_postrm() { - gnome2_icon_cache_update -} |