diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 18:33:48 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 18:33:48 +0800 |
commit | 1b3327761c8bcb98d89b529daeae9600844b4361 (patch) | |
tree | 0be1cd4eb5fec6661da4798906b0d9bd522e794f /devel/py-xdg | |
parent | a65aedbb59fd9dfb33a4633611777da99ec4dcd5 (diff) | |
download | marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.gz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.bz2 marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.lz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.xz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.zst marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.zip |
Clean out MarcusCom after the big import into ports.
Next stop, GNOME 2.17.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7799 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/py-xdg')
-rw-r--r-- | devel/py-xdg/Makefile | 31 | ||||
-rw-r--r-- | devel/py-xdg/distinfo | 3 | ||||
-rw-r--r-- | devel/py-xdg/files/patch-xdg::BaseDirectory.py | 11 | ||||
-rw-r--r-- | devel/py-xdg/files/patch-xdg::IconTheme.py | 15 | ||||
-rw-r--r-- | devel/py-xdg/files/patch-xdg_Menu.py | 13 | ||||
-rw-r--r-- | devel/py-xdg/pkg-descr | 11 | ||||
-rw-r--r-- | devel/py-xdg/pkg-plist | 37 |
7 files changed, 0 insertions, 121 deletions
diff --git a/devel/py-xdg/Makefile b/devel/py-xdg/Makefile deleted file mode 100644 index 631b4265a..000000000 --- a/devel/py-xdg/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: py-xdg -# Date created: 2004-06-25 -# Whom: michael johnson <ahze@ahze.net> -# -# $FreeBSD$ -# $MCom: ports/devel/py-xdg/Makefile,v 1.1 2006/09/01 20:58:00 ahze Exp $ -# - -PORTNAME= xdg -PORTVERSION= 0.15 -PORTREVISION= 2 -CATEGORIES= devel python -MASTER_SITES= http://www.freedesktop.org/~lanius/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= py${PORTNAME}-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A python library to access freedesktop.org standards - -USE_PYTHON= yes -USE_PYDISTUTILS=yes - -post-patch: - @${REINPLACE_CMD} -e \ - 's|/etc|${LOCALBASE}/etc|g ; \ - s|%%X11BASE%%|${X11BASE}|g ; \ - s|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/xdg/BaseDirectory.py \ - ${WRKSRC}/xdg/IconTheme.py - -.include <bsd.port.mk> diff --git a/devel/py-xdg/distinfo b/devel/py-xdg/distinfo deleted file mode 100644 index 9118f9eda..000000000 --- a/devel/py-xdg/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (pyxdg-0.15.tar.gz) = 86a5441285fc908145414b63348d11a3 -SHA256 (pyxdg-0.15.tar.gz) = c2adf20955cb62af5c94622d0dd47fb82ee63da33c03d5a1f82337ba83044bb7 -SIZE (pyxdg-0.15.tar.gz) = 36465 diff --git a/devel/py-xdg/files/patch-xdg::BaseDirectory.py b/devel/py-xdg/files/patch-xdg::BaseDirectory.py deleted file mode 100644 index 47bd3f33a..000000000 --- a/devel/py-xdg/files/patch-xdg::BaseDirectory.py +++ /dev/null @@ -1,11 +0,0 @@ ---- xdg/BaseDirectory.py.orig Wed Mar 23 00:08:43 2005 -+++ xdg/BaseDirectory.py Wed Mar 23 00:09:35 2005 -@@ -33,7 +33,7 @@ - os.path.join(_home, '.local', 'share')) - - xdg_data_dirs = [xdg_data_home] + \ -- os.environ.get('XDG_DATA_DIRS', '/usr/local/share:/usr/share').split(':') -+ os.environ.get('XDG_DATA_DIRS', '%%LOCALBASE%%/share/gnome:%%LOCALBASE%%/share:/usr/share').split(':') - - xdg_config_home = os.environ.get('XDG_CONFIG_HOME', - os.path.join(_home, '.config')) diff --git a/devel/py-xdg/files/patch-xdg::IconTheme.py b/devel/py-xdg/files/patch-xdg::IconTheme.py deleted file mode 100644 index cc5714b82..000000000 --- a/devel/py-xdg/files/patch-xdg::IconTheme.py +++ /dev/null @@ -1,15 +0,0 @@ ---- xdg/IconTheme.py.orig Sun Jun 5 14:20:19 2005 -+++ xdg/IconTheme.py Sun Jun 5 14:21:07 2005 -@@ -215,7 +215,11 @@ - icondirs = [] - for basedir in xdg_data_dirs: - icondirs.append(os.path.join(basedir, "icons")) --icondirs.append("/usr/share/pixmaps") -+icondirs.append("%%X11BASE%%/share/pixmaps") -+icondirs.append("%%LOCALBASE%%/share/pixmaps") -+icondirs.append("%%LOCALBASE%%/share/gnome/pixmaps") -+icondirs.append("%%X11BASE%%/share/icons") -+icondirs.append("%%LOCALBASE%%/share/icons") - icondirs.append(os.path.expanduser("~/.icons")) - - # just cache variables, they give a 10x speed improvement diff --git a/devel/py-xdg/files/patch-xdg_Menu.py b/devel/py-xdg/files/patch-xdg_Menu.py deleted file mode 100644 index 186fda591..000000000 --- a/devel/py-xdg/files/patch-xdg_Menu.py +++ /dev/null @@ -1,13 +0,0 @@ ---- xdg/Menu.py.orig Thu Aug 11 07:37:48 2005 -+++ xdg/Menu.py Sat Sep 2 05:10:19 2006 -@@ -494,6 +494,10 @@ - if not filename: - filename = __getFileName("applications.menu") - -+ # use gnome if no filename given -+ if not filename: -+ filename = __getFileName("gnome-applications.menu") -+ - if not filename: - raise ParsingError('File not found', "/etc/xdg/menus/applications.menu") - diff --git a/devel/py-xdg/pkg-descr b/devel/py-xdg/pkg-descr deleted file mode 100644 index 85056ce3b..000000000 --- a/devel/py-xdg/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -A python library to access freedesktop.org standards. - -Currently supported are: - o Base Directory Specification - o Menu Specification - o Desktop Entry Specification - o Icon Theme Specification - o Recent File Spec - o Shared-MIME-Database Specification - -WWW: http://freedesktop.org/Software/pyxdg diff --git a/devel/py-xdg/pkg-plist b/devel/py-xdg/pkg-plist deleted file mode 100644 index 8f6a8b028..000000000 --- a/devel/py-xdg/pkg-plist +++ /dev/null @@ -1,37 +0,0 @@ -%%PYTHON_SITELIBDIR%%/xdg/BaseDirectory.py -%%PYTHON_SITELIBDIR%%/xdg/BaseDirectory.pyc -%%PYTHON_SITELIBDIR%%/xdg/BaseDirectory.pyo -%%PYTHON_SITELIBDIR%%/xdg/Config.py -%%PYTHON_SITELIBDIR%%/xdg/Config.pyc -%%PYTHON_SITELIBDIR%%/xdg/Config.pyo -%%PYTHON_SITELIBDIR%%/xdg/DesktopEntry.py -%%PYTHON_SITELIBDIR%%/xdg/DesktopEntry.pyc -%%PYTHON_SITELIBDIR%%/xdg/DesktopEntry.pyo -%%PYTHON_SITELIBDIR%%/xdg/Exceptions.py -%%PYTHON_SITELIBDIR%%/xdg/Exceptions.pyc -%%PYTHON_SITELIBDIR%%/xdg/Exceptions.pyo -%%PYTHON_SITELIBDIR%%/xdg/IconTheme.py -%%PYTHON_SITELIBDIR%%/xdg/IconTheme.pyc -%%PYTHON_SITELIBDIR%%/xdg/IconTheme.pyo -%%PYTHON_SITELIBDIR%%/xdg/IniFile.py -%%PYTHON_SITELIBDIR%%/xdg/IniFile.pyc -%%PYTHON_SITELIBDIR%%/xdg/IniFile.pyo -%%PYTHON_SITELIBDIR%%/xdg/Locale.py -%%PYTHON_SITELIBDIR%%/xdg/Locale.pyc -%%PYTHON_SITELIBDIR%%/xdg/Locale.pyo -%%PYTHON_SITELIBDIR%%/xdg/Menu.py -%%PYTHON_SITELIBDIR%%/xdg/Menu.pyc -%%PYTHON_SITELIBDIR%%/xdg/Menu.pyo -%%PYTHON_SITELIBDIR%%/xdg/MenuEditor.py -%%PYTHON_SITELIBDIR%%/xdg/MenuEditor.pyc -%%PYTHON_SITELIBDIR%%/xdg/MenuEditor.pyo -%%PYTHON_SITELIBDIR%%/xdg/Mime.py -%%PYTHON_SITELIBDIR%%/xdg/Mime.pyc -%%PYTHON_SITELIBDIR%%/xdg/Mime.pyo -%%PYTHON_SITELIBDIR%%/xdg/RecentFiles.py -%%PYTHON_SITELIBDIR%%/xdg/RecentFiles.pyc -%%PYTHON_SITELIBDIR%%/xdg/RecentFiles.pyo -%%PYTHON_SITELIBDIR%%/xdg/__init__.py -%%PYTHON_SITELIBDIR%%/xdg/__init__.pyc -%%PYTHON_SITELIBDIR%%/xdg/__init__.pyo -@dirrm %%PYTHON_SITELIBDIR%%/xdg |