summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-10-01 10:00:27 +0200
committerPacho Ramos <pacho@gentoo.org>2016-10-01 10:02:02 +0200
commit755e2e74b59343ea17fa6b7582ced53cd83dfd0f (patch)
treee9b2954a209e84f61273cbfc9f4cb26e00a65cf5 /games-mud
parentpackage.mask: remove some masked for removal packages (diff)
downloadgentoo-755e2e74b59343ea17fa6b7582ced53cd83dfd0f.tar.gz
gentoo-755e2e74b59343ea17fa6b7582ced53cd83dfd0f.tar.bz2
gentoo-755e2e74b59343ea17fa6b7582ced53cd83dfd0f.zip
package.mask: remove some masked for removal packages
Diffstat (limited to 'games-mud')
-rw-r--r--games-mud/wxmud/metadata.xml13
-rw-r--r--games-mud/wxmud/wxmud-9999.ebuild53
2 files changed, 0 insertions, 66 deletions
diff --git a/games-mud/wxmud/metadata.xml b/games-mud/wxmud/metadata.xml
deleted file mode 100644
index d1d955acf6f0..000000000000
--- a/games-mud/wxmud/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>leio@gentoo.org</email>
- </maintainer>
- <longdescription>
-wxMUD is an open source cross-platform graphical MUD client featuring MCCP, MXP and MSP support, among other usual features.
- </longdescription>
- <upstream>
- <remote-id type="sourceforge">wxmud</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/games-mud/wxmud/wxmud-9999.ebuild b/games-mud/wxmud/wxmud-9999.ebuild
deleted file mode 100644
index 68099e5efdb0..000000000000
--- a/games-mud/wxmud/wxmud-9999.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-WX_GTK_VER=2.8
-PYTHON_COMPAT=( python2_7 )
-inherit flag-o-matic subversion wxwidgets autotools python-single-r1
-
-DESCRIPTION="Cross-platform MUD client"
-HOMEPAGE="http://wxmud.sourceforge.net/"
-SRC_URI=""
-ESVN_REPO_URI="https://wxmud.svn.sourceforge.net/svnroot/wxmud/trunk"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="python"
-
-RDEPEND="
- >=x11-libs/gtk+-2.4:2
- x11-libs/wxGTK:${WX_GTK_VER}
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_unpack() {
- subversion_src_unpack
- cd "${S}" || die
- AT_M4DIR="m4" eautoreconf
-}
-
-src_configure() {
- append-flags -fno-strict-aliasing
- # No audiere in portage yet, so useful MSP support is disabled for now
- econf \
- --with-wx-config="${WX_CONFIG}" \
- $(use_enable python) \
- --disable-audiere
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- default
- dodoc docs/input.txt docs/scripting.txt
-}