diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Makefile | 1 | ||||
-rw-r--r-- | editors/py-room/Makefile | 31 | ||||
-rw-r--r-- | editors/py-room/distinfo | 2 | ||||
-rw-r--r-- | editors/py-room/files/patch-PyRoom-gui.py | 11 | ||||
-rw-r--r-- | editors/py-room/files/patch-PyRoom-preferences.py | 11 | ||||
-rw-r--r-- | editors/py-room/files/patch-pyroom.desktop | 14 | ||||
-rw-r--r-- | editors/py-room/files/patch-setup.py | 15 | ||||
-rw-r--r-- | editors/py-room/pkg-descr | 15 | ||||
-rw-r--r-- | editors/py-room/pkg-plist | 77 |
9 files changed, 0 insertions, 177 deletions
diff --git a/editors/Makefile b/editors/Makefile index b183a54974c3..238df1320394 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -218,7 +218,6 @@ SUBDIR += puff SUBDIR += py-editorconfig SUBDIR += py-pynvim - SUBDIR += py-room SUBDIR += quilter SUBDIR += rubygem-neovim SUBDIR += scite diff --git a/editors/py-room/Makefile b/editors/py-room/Makefile deleted file mode 100644 index 5d4915dcad3c..000000000000 --- a/editors/py-room/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# Created by: Alexander Best -# $FreeBSD$ - -PORTNAME= room -PORTVERSION= 0.4.1 -PORTREVISION= 5 -CATEGORIES= editors python -MASTER_SITES= https://launchpad.net/pyroom/${PORTVERSION:R}/${PORTVERSION}/+download/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= py${PORTNAME}-${PORTVERSION} - -MAINTAINER= arundel@FreeBSD.org -COMMENT= PyRoom is a clone of WriteRoom and features "distraction-free writing" - -DEPRECATED= Old, uses EOLed python27 -EXPIRATION_DATE= 2020-03-01 - -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg@${PY_FLAVOR} - -USES= gettext gnome python:2.7 -USE_PYTHON= distutils -USE_GNOME= pygtk2 -PYDISTUTILS_PKGNAME= PyRoom - -post-patch: - @${REINPLACE_CMD} -e \ - 's|%%PREFIX%%|${PREFIX}|g' \ - ${WRKSRC}/setup.py ${WRKSRC}/PyRoom/preferences.py \ - ${WRKSRC}/PyRoom/gui.py ${WRKSRC}/pyroom.desktop - -.include <bsd.port.mk> diff --git a/editors/py-room/distinfo b/editors/py-room/distinfo deleted file mode 100644 index 01f3ee682470..000000000000 --- a/editors/py-room/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (pyroom-0.4.1.tar.gz) = 5a885010a7d207c90384c48869cc2be863df5b1bca561750ffd483a8969c9bf3 -SIZE (pyroom-0.4.1.tar.gz) = 85918 diff --git a/editors/py-room/files/patch-PyRoom-gui.py b/editors/py-room/files/patch-PyRoom-gui.py deleted file mode 100644 index fa252e31ec3f..000000000000 --- a/editors/py-room/files/patch-PyRoom-gui.py +++ /dev/null @@ -1,11 +0,0 @@ ---- PyRoom/gui.py.orig 2009-11-13 04:07:00.000000000 +0100 -+++ PyRoom/gui.py 2009-11-13 04:07:12.000000000 +0100 -@@ -53,7 +53,7 @@ - - order of preference is homedir, global dir, source dir (if available)""" - local_directory = os.path.join(data_home, 'pyroom', 'themes') -- global_directory = '/usr/share/pyroom/themes' # FIXME: platform -+ global_directory = '%%PREFIX%%/share/pyroom/themes' # FIXME: platform - # in case PyRoom is run without installation - fallback_directory = os.path.join( - os.path.dirname(os.path.abspath(__file__)), diff --git a/editors/py-room/files/patch-PyRoom-preferences.py b/editors/py-room/files/patch-PyRoom-preferences.py deleted file mode 100644 index d41da08f9f12..000000000000 --- a/editors/py-room/files/patch-PyRoom-preferences.py +++ /dev/null @@ -1,11 +0,0 @@ ---- PyRoom/preferences.py 2009-11-13 03:57:27.000000000 +0100 -+++ PyRoom/preferences.py 2009-11-13 03:57:44.000000000 +0100 -@@ -95,7 +95,7 @@ - self.conf_dir = os.path.join(config_home, 'pyroom') - self.data_dir = os.path.join(data_home, 'pyroom') - self.themes_dir = os.path.join(self.data_dir, 'themes') -- self.global_themes_dir = '/usr/share/pyroom/themes' -+ self.global_themes_dir = '%%PREFIX%%/share/pyroom/themes' - # if we are not using a global installation, - # take the themes directly from sources - if not os.path.isdir(self.global_themes_dir) : diff --git a/editors/py-room/files/patch-pyroom.desktop b/editors/py-room/files/patch-pyroom.desktop deleted file mode 100644 index 9e4f13e56735..000000000000 --- a/editors/py-room/files/patch-pyroom.desktop +++ /dev/null @@ -1,14 +0,0 @@ ---- pyroom.desktop 2009-04-06 10:32:56.000000000 +0200 -+++ pyroom.desktop 2009-04-06 10:32:56.000000000 +0200 -@@ -1,9 +1,9 @@ - [Desktop Entry] - Version=1.0 - Name=PyRoom --Icon=/usr/share/pyroom/pyroom.png -+Icon=%%PREFIX%%/share/pyroom/pyroom.png - Comment=Distraction free full-screen text editor --Exec=/usr/bin/pyroom %F -+Exec=%%PREFIX%%/bin/pyroom %F - Terminal=false - Type=Application - Categories=GNOME;GTK;Office; diff --git a/editors/py-room/files/patch-setup.py b/editors/py-room/files/patch-setup.py deleted file mode 100644 index c0b23047f440..000000000000 --- a/editors/py-room/files/patch-setup.py +++ /dev/null @@ -1,15 +0,0 @@ ---- setup.py 2009-11-13 03:32:53.000000000 +0100 -+++ setup.py 2009-11-13 03:35:25.000000000 +0100 -@@ -52,9 +52,9 @@ - packages = ['PyRoom',], - package_data = {'PyRoom':['interface.glade']}, - data_files = [ -- ('/usr/share/pyroom/themes', glob.glob('themes/*.theme')), -- ('/usr/share/pyroom', ['pyroom.png']), -- ('/usr/share/applications', ['pyroom.desktop']) -+ ('%%PREFIX%%/share/pyroom/themes', glob.glob('themes/*.theme')), -+ ('%%PREFIX%%/share/pyroom', ['pyroom.png']), -+ ('%%PREFIX%%/share/applications', ['pyroom.desktop']) - ], - scripts=['pyroom',], - cmdclass={'install_data': InstallData}, diff --git a/editors/py-room/pkg-descr b/editors/py-room/pkg-descr deleted file mode 100644 index 8aa398cd7b7f..000000000000 --- a/editors/py-room/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -With the goal of staying out of your way while writing creatively, PyRoom has a -very specialized featureset. In fact, most features are hidden from your main -interface, not cluttering your workspace with buttons and menus and statistics. - -Features of PyRoom: - * no visual clutter - * work on multiple documents at once (main text, outline, etc) - * control PyRoom via keyboard shortcuts - * autosave your work - * check wordcounts on keypress - * choose from preconfigured designs or create your own color scheme - * further customize visual appearance and whitespace (line spacing, border, - padding...) - -WWW: http://www.pyroom.org diff --git a/editors/py-room/pkg-plist b/editors/py-room/pkg-plist deleted file mode 100644 index a35505ae472b..000000000000 --- a/editors/py-room/pkg-plist +++ /dev/null @@ -1,77 +0,0 @@ -bin/pyroom -%%PYTHON_SITELIBDIR%%/PyRoom/__init__.py -%%PYTHON_SITELIBDIR%%/PyRoom/__init__.pyc -%%PYTHON_SITELIBDIR%%/PyRoom/__init__.pyo -%%PYTHON_SITELIBDIR%%/PyRoom/autosave.py -%%PYTHON_SITELIBDIR%%/PyRoom/autosave.pyc -%%PYTHON_SITELIBDIR%%/PyRoom/autosave.pyo -%%PYTHON_SITELIBDIR%%/PyRoom/basic_edit.py -%%PYTHON_SITELIBDIR%%/PyRoom/basic_edit.pyc -%%PYTHON_SITELIBDIR%%/PyRoom/basic_edit.pyo -%%PYTHON_SITELIBDIR%%/PyRoom/cmdline.py -%%PYTHON_SITELIBDIR%%/PyRoom/cmdline.pyc -%%PYTHON_SITELIBDIR%%/PyRoom/cmdline.pyo -%%PYTHON_SITELIBDIR%%/PyRoom/gui.py -%%PYTHON_SITELIBDIR%%/PyRoom/gui.pyc -%%PYTHON_SITELIBDIR%%/PyRoom/gui.pyo -%%PYTHON_SITELIBDIR%%/PyRoom/interface.glade -%%PYTHON_SITELIBDIR%%/PyRoom/preferences.py -%%PYTHON_SITELIBDIR%%/PyRoom/preferences.pyc -%%PYTHON_SITELIBDIR%%/PyRoom/preferences.pyo -%%PYTHON_SITELIBDIR%%/PyRoom/pyroom_error.py -%%PYTHON_SITELIBDIR%%/PyRoom/pyroom_error.pyc -%%PYTHON_SITELIBDIR%%/PyRoom/pyroom_error.pyo -share/pyroom/themes/amber.theme -share/pyroom/themes/banker.theme -share/pyroom/themes/blue.theme -share/pyroom/themes/c64.theme -share/pyroom/themes/cupid.theme -share/pyroom/themes/custom.theme -share/pyroom/themes/darkgreen.theme -share/pyroom/themes/green.theme -share/pyroom/themes/grey.theme -share/pyroom/themes/locontrast.theme -share/pyroom/themes/soft_letterpaper.theme -share/pyroom/themes/website.theme -share/pyroom/pyroom.png -share/applications/pyroom.desktop -share/locale/ar/LC_MESSAGES/pyroom.mo -share/locale/bg/LC_MESSAGES/pyroom.mo -share/locale/br/LC_MESSAGES/pyroom.mo -share/locale/ca/LC_MESSAGES/pyroom.mo -share/locale/cy/LC_MESSAGES/pyroom.mo -share/locale/da/LC_MESSAGES/pyroom.mo -share/locale/de/LC_MESSAGES/pyroom.mo -share/locale/el/LC_MESSAGES/pyroom.mo -share/locale/en_GB/LC_MESSAGES/pyroom.mo -share/locale/eo/LC_MESSAGES/pyroom.mo -share/locale/es/LC_MESSAGES/pyroom.mo -share/locale/eu/LC_MESSAGES/pyroom.mo -share/locale/fi/LC_MESSAGES/pyroom.mo -share/locale/fr/LC_MESSAGES/pyroom.mo -share/locale/ga/LC_MESSAGES/pyroom.mo -share/locale/gu/LC_MESSAGES/pyroom.mo -share/locale/hr/LC_MESSAGES/pyroom.mo -share/locale/hu/LC_MESSAGES/pyroom.mo -share/locale/id/LC_MESSAGES/pyroom.mo -share/locale/it/LC_MESSAGES/pyroom.mo -share/locale/ja/LC_MESSAGES/pyroom.mo -share/locale/lt/LC_MESSAGES/pyroom.mo -share/locale/lv/LC_MESSAGES/pyroom.mo -share/locale/mk/LC_MESSAGES/pyroom.mo -share/locale/nb/LC_MESSAGES/pyroom.mo -share/locale/nl/LC_MESSAGES/pyroom.mo -share/locale/nn/LC_MESSAGES/pyroom.mo -share/locale/pl/LC_MESSAGES/pyroom.mo -share/locale/pt/LC_MESSAGES/pyroom.mo -share/locale/pt_BR/LC_MESSAGES/pyroom.mo -share/locale/ro/LC_MESSAGES/pyroom.mo -share/locale/ru/LC_MESSAGES/pyroom.mo -share/locale/sk/LC_MESSAGES/pyroom.mo -share/locale/sl/LC_MESSAGES/pyroom.mo -share/locale/sr/LC_MESSAGES/pyroom.mo -share/locale/sv/LC_MESSAGES/pyroom.mo -share/locale/tr/LC_MESSAGES/pyroom.mo -share/locale/zh_CN/LC_MESSAGES/pyroom.mo -share/locale/ku/LC_MESSAGES/pyroom.mo -share/locale/sco/LC_MESSAGES/pyroom.mo |