1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-06 11:41:52 +00:00

Remove expired port:

2014-04-08 audio/py-xmms: Abandonware, please consider using multimedia/audacious instead
This commit is contained in:
Antoine Brodin 2014-04-08 17:08:51 +00:00
parent c7d659d4f8
commit 7b49fda543
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=350636
6 changed files with 1 additions and 83 deletions

1
MOVED
View File

@ -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

View File

@ -613,7 +613,6 @@
SUBDIR += py-speex
SUBDIR += py-tagpy
SUBDIR += py-vorbis
SUBDIR += py-xmms
SUBDIR += py-xmms2
SUBDIR += pytone
SUBDIR += qjackctl

View File

@ -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>

View File

@ -1,2 +0,0 @@
SHA256 (pyxmms-2.07.tar.bz2) = 098f3c91e0548747f8243ca7db6a6232250370d6acaf97ff18954b0ae6d741b7
SIZE (pyxmms-2.07.tar.bz2) = 53627

View File

@ -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

View File

@ -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