aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2014-04-09 01:08:51 +0800
committerAntoine Brodin <antoine@FreeBSD.org>2014-04-09 01:08:51 +0800
commit7b49fda543951c317c753787b9af36336cd1f831 (patch)
treea3c936a20ff8c58729c8794f889f998714fec1ef
parentc7d659d4f8cf2176f6493156ce58b924d3f54e27 (diff)
downloadfreebsd-ports-gnome-7b49fda543951c317c753787b9af36336cd1f831.tar.gz
freebsd-ports-gnome-7b49fda543951c317c753787b9af36336cd1f831.tar.zst
freebsd-ports-gnome-7b49fda543951c317c753787b9af36336cd1f831.zip
Remove expired port:
2014-04-08 audio/py-xmms: Abandonware, please consider using multimedia/audacious instead
-rw-r--r--MOVED1
-rw-r--r--audio/Makefile1
-rw-r--r--audio/py-xmms/Makefile27
-rw-r--r--audio/py-xmms/distinfo2
-rw-r--r--audio/py-xmms/files/patch-setup.py46
-rw-r--r--audio/py-xmms/pkg-descr7
6 files changed, 1 insertions, 83 deletions
diff --git a/MOVED b/MOVED
index 05be98b85820..ecd8895f5af5 100644
--- a/MOVED
+++ b/MOVED
@@ -5882,3 +5882,4 @@ graphics/pyggel|graphics/py-pyggel|2014-04-07|Rename to consistency with other P
games/f1lt||2014-04-06|Trademark violation: http://www.formula1.com/trademarkguidelines.html
japanese/p5-manual||2014-04-08|Outdated manuals
graphics/openclipart||2014-04-08|Outdated, has no real meaning as a port
+audio/py-xmms||2014-04-08|Has expired: Abandonware, please consider using multimedia/audacious instead
diff --git a/audio/Makefile b/audio/Makefile
index 8062f101138f..c450a8f71de2 100644
--- a/audio/Makefile
+++ b/audio/Makefile
@@ -613,7 +613,6 @@
SUBDIR += py-speex
SUBDIR += py-tagpy
SUBDIR += py-vorbis
- SUBDIR += py-xmms
SUBDIR += py-xmms2
SUBDIR += pytone
SUBDIR += qjackctl
diff --git a/audio/py-xmms/Makefile b/audio/py-xmms/Makefile
deleted file mode 100644
index a03f8a8eac9c..000000000000
--- a/audio/py-xmms/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# Created by: Hye-Shik Chang <perky@fallin.lv>
-# $FreeBSD$
-
-PORTNAME= xmms
-PORTVERSION= 2.07
-CATEGORIES= audio python
-MASTER_SITES= http://people.via.ecp.fr/~flo/projects/PyXMMS/dist/
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-DISTNAME= pyxmms-${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= XMMS Remote Control Library for Python
-
-BUILD_DEPENDS= ${XMMS_CONFIG}:${PORTSDIR}/multimedia/xmms
-LIB_DEPENDS= libxmms.so:${PORTSDIR}/multimedia/xmms
-
-DEPRECATED= Depends on deprecated on forbidden xmms
-EXPIRATION_DATE= 2014-04-08
-USE_PYTHON= yes
-USE_PYDISTUTILS= yes
-PYDISTUTILS_AUTOPLIST= yes
-USE_BZIP2= yes
-USE_GNOME= glib12
-XMMS_CONFIG?= ${LOCALBASE}/bin/xmms-config
-MAKE_ENV= XMMS_CONFIG="${XMMS_CONFIG}"
-
-.include <bsd.port.mk>
diff --git a/audio/py-xmms/distinfo b/audio/py-xmms/distinfo
deleted file mode 100644
index 7c191fb1242b..000000000000
--- a/audio/py-xmms/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (pyxmms-2.07.tar.bz2) = 098f3c91e0548747f8243ca7db6a6232250370d6acaf97ff18954b0ae6d741b7
-SIZE (pyxmms-2.07.tar.bz2) = 53627
diff --git a/audio/py-xmms/files/patch-setup.py b/audio/py-xmms/files/patch-setup.py
deleted file mode 100644
index bf17de4f813a..000000000000
--- a/audio/py-xmms/files/patch-setup.py
+++ /dev/null
@@ -1,46 +0,0 @@
---- setup.py.orig 2007-02-07 14:04:48.000000000 +0100
-+++ setup.py 2014-03-08 10:02:22.000000000 +0100
-@@ -19,13 +19,13 @@
- # Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- # Boston, MA 02110-1301 USA.
-
--import os, string, sys, distutils.dist
-+import os, string, sys, distutils.dist, re
- from distutils.core import setup, Extension
-
- PACKAGE = "pyxmms"
- VERSION = "2.07"
--GLIB_CONFIG = "glib-config"
--
-+GLIB_CONFIG = os.environ['GLIB_CONFIG']
-+XMMS_CONFIG = os.environ['XMMS_CONFIG']
-
- def get_glib_config():
- """Get the compilation and link parameters for glib."""
-@@ -62,19 +62,22 @@
- def setup_args():
- """Craft appropriate arguments for distutils.setup."""
- (glib_include_dirs, glib_compile_args, glib_link_args) = get_glib_config()
-+
-+ XMMSINCDIR = re.findall('-I([^ ]+)', os.popen(XMMS_CONFIG+" --cflags").read())
-+ XMMSLIBDIR = re.findall('-L([^ ]+)', os.popen(XMMS_CONFIG+" --libs").read())
-
- # Modules built whatever the version of the running Python
- ext_modules = [Extension("xmms._xmmscontrol",
- ["src/_xmmscontrolmodule.c"],
-- include_dirs=glib_include_dirs,
-+ include_dirs=glib_include_dirs+XMMSINCDIR,
- extra_compile_args=glib_compile_args,
-- libraries=["xmms"],
-+ libraries=["xmms"], library_dirs=XMMSLIBDIR,
- extra_link_args=glib_link_args),
- Extension("xmms._xmmsconfig",
- ["src/_xmmsconfigmodule.c"],
-- include_dirs=glib_include_dirs,
-+ include_dirs=glib_include_dirs+XMMSINCDIR,
- extra_compile_args=glib_compile_args,
-- libraries=["xmms"],
-+ libraries=["xmms"], library_dirs=XMMSLIBDIR,
- extra_link_args=glib_link_args)]
-
- # Trove classifiers picked up from the list at
diff --git a/audio/py-xmms/pkg-descr b/audio/py-xmms/pkg-descr
deleted file mode 100644
index 286052beba8f..000000000000
--- a/audio/py-xmms/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-PyXMMS is a set of Python bindings for the xmms_remote* functions
-of the libxmms library, plus some higher-level functions. In other
-words, it is a set of functions callable from Python code that can
-be used to control XMMS, a free multimedia (audio and video) player
-for X-Window.
-
-WWW: http://people.via.ecp.fr/~flo/index.en.xhtml#PyXMMS_and_PyXMMS-remote