diff options
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 3 | ||||
-rw-r--r-- | textproc/ecromedos/Makefile | 51 | ||||
-rw-r--r-- | textproc/ecromedos/distinfo | 2 | ||||
-rw-r--r-- | textproc/ecromedos/files/patch-lib_ecmds_configreader.py | 24 | ||||
-rw-r--r-- | textproc/ecromedos/pkg-descr | 11 | ||||
-rw-r--r-- | textproc/ecromedos/pkg-plist | 82 | ||||
-rw-r--r-- | textproc/py-wicked/Makefile | 26 | ||||
-rw-r--r-- | textproc/py-wicked/distinfo | 2 | ||||
-rw-r--r-- | textproc/py-wicked/pkg-descr | 4 | ||||
-rw-r--r-- | textproc/py-zope.app.i18n/Makefile | 32 | ||||
-rw-r--r-- | textproc/py-zope.app.i18n/distinfo | 2 | ||||
-rw-r--r-- | textproc/py-zope.app.i18n/pkg-descr | 3 |
12 files changed, 0 insertions, 242 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index ce3cb02fb9f5..02f9ccb5511c 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -155,7 +155,6 @@ SUBDIR += dwdiff SUBDIR += easydiff SUBDIR += ebook-tools - SUBDIR += ecromedos SUBDIR += ekhtml SUBDIR += el-aspell SUBDIR += el-hyphen @@ -1399,7 +1398,6 @@ SUBDIR += py-ucl SUBDIR += py-ufal.udpipe SUBDIR += py-whoosh - SUBDIR += py-wicked SUBDIR += py-wordnet SUBDIR += py-wstools SUBDIR += py-wtf-peewee @@ -1412,7 +1410,6 @@ SUBDIR += py-xml-default-dict SUBDIR += py-xmldiff SUBDIR += py-yapf - SUBDIR += py-zope.app.i18n SUBDIR += py-zope.app.locales SUBDIR += py-zope.i18nmessageid SUBDIR += py-zope.structuredtext diff --git a/textproc/ecromedos/Makefile b/textproc/ecromedos/Makefile deleted file mode 100644 index 410842e98745..000000000000 --- a/textproc/ecromedos/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# Created by: Nicola Vitale <nivit@email.it> -# $FreeBSD$ - -PORTNAME= ecromedos -PORTVERSION= 2.1.0 -PORTREVISION= 2 -CATEGORIES= textproc print www -MASTER_SITES= http://www.ecromedos.net/files/src/${PORTVERSION}/ - -MAINTAINER= nivit@FreeBSD.org -COMMENT= Document preparation system that allows concurrent publication - -BROKEN= unfetchable -DEPRECATED= Broken, uses EOLed python27 -EXPIRATION_DATE= 2020-02-19 - -LICENSE= GPLv2 - -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libxml2>=0:textproc/py-libxml2@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}libxslt>=0:textproc/py-libxslt@${PY_FLAVOR} \ - convert:graphics/ImageMagick6 \ - ${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR} - -NO_BUILD= yes - -USES= gnome python:2.7 -USE_GNOME= libxml2 libxslt -USE_TEX= latex - -post-patch: - @(cd ${WRKSRC} && \ - ${REINPLACE_CMD} \ - -e 's|^\#!${SETENV} python|\#!${PYTHON_CMD}|1' \ - -e 's|[^!]/usr/bin|${LOCALBASE}/bin|g' \ - -e 's|%%ETCDIR%%|${ETCDIR}|g' \ - bin/${PORTNAME} etc/ecmds.conf lib/ecmds/configreader.py) - -do-install: - @${MKDIR} ${STAGEDIR}${DATADIR}/bin - @${MKDIR} ${STAGEDIR}${ETCDIR} - (cd ${WRKSRC} ; \ - ${COPYTREE_SHARE} "data lib transform" ${STAGEDIR}${DATADIR} \ - "-not ( -name "*.orig" -or -name "*.bak" )" ; \ - ${INSTALL_DATA} etc/ecmds.conf ${STAGEDIR}${ETCDIR}/ecmds.conf.sample ; \ - ${INSTALL_DATA} etc/plugins.conf ${STAGEDIR}${ETCDIR}/plugins.conf.sample ; \ - ${INSTALL_SCRIPT} bin/${PORTNAME} ${STAGEDIR}${DATADIR}/bin/${PORTNAME}) - @(cd ${STAGEDIR}${PREFIX}/bin ; \ - ${LN} -s ../${DATADIR_REL}/bin/${PORTNAME} ecmds ; \ - ${LN} -s ../${DATADIR_REL}/bin/${PORTNAME} ${PORTNAME}) - -.include <bsd.port.mk> diff --git a/textproc/ecromedos/distinfo b/textproc/ecromedos/distinfo deleted file mode 100644 index de7761a941a8..000000000000 --- a/textproc/ecromedos/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ecromedos-2.1.0.tar.gz) = 6b75f85feaf8cc0bb2434a313d9a53377214bebada49fed4f37e3d46579c6453 -SIZE (ecromedos-2.1.0.tar.gz) = 72374 diff --git a/textproc/ecromedos/files/patch-lib_ecmds_configreader.py b/textproc/ecromedos/files/patch-lib_ecmds_configreader.py deleted file mode 100644 index 55e82981a934..000000000000 --- a/textproc/ecromedos/files/patch-lib_ecmds_configreader.py +++ /dev/null @@ -1,24 +0,0 @@ ---- lib/ecmds/configreader.py.orig 2012-01-12 21:43:00 UTC -+++ lib/ecmds/configreader.py -@@ -113,9 +113,7 @@ class ECMDSCfgFileReader: - try: - cfile = os.path.normpath(options['config_file']) - except KeyError: -- syspath = os.path.normpath(sys.path[0]) -- cfile = os.sep.join(["..", "etc", "ecmds.conf"]) -- cfile = os.path.join(syspath, cfile) -+ cfile = "%%ETCDIR%%/ecmds.conf" - if not os.path.isfile(cfile): - msg = "Please specify the location of the config file." - raise ECMDSError(msg) -@@ -189,9 +187,7 @@ class ECMDSPluginsMapReader: - try: - pmap = os.path.normpath(config['plugins_map']) - except KeyError: -- syspath = os.path.normpath(sys.path[0]) -- pmap = os.sep.join(["..", "etc", "plugins.conf"]) -- pmap = os.path.join(syspath, pmap) -+ pmap = "%%ETCDIR%%/plugins.conf" - if not os.path.isfile(pmap): - msg = "Warning: plugins map not found." - sys.stderr.write(msg + "\n") diff --git a/textproc/ecromedos/pkg-descr b/textproc/ecromedos/pkg-descr deleted file mode 100644 index 19c61d838e50..000000000000 --- a/textproc/ecromedos/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -An integrated solution for XML-based publishing in print and web. -It is specifically targeted at producing technical documentation -in the field of computer science. - -Documents are written in an XML-based markup language and translated -to different formats with XSL-transformations. At this time, eCromedos -supports the target formats XHTML and LATEX. Where LATEX output can be -further processed into high-quality printable formats by use of the -TEX typesetting system (http://www.ctan.org). - -WWW: http://www.ecromedos.net/ diff --git a/textproc/ecromedos/pkg-plist b/textproc/ecromedos/pkg-plist deleted file mode 100644 index 0cc577deaf7a..000000000000 --- a/textproc/ecromedos/pkg-plist +++ /dev/null @@ -1,82 +0,0 @@ -bin/ecmds -bin/ecromedos -@sample %%ETCDIR%%/ecmds.conf.sample -@sample %%ETCDIR%%/plugins.conf.sample -%%DATADIR%%/bin/ecromedos -%%DATADIR%%/data/arrow.svg -%%DATADIR%%/data/next.gif -%%DATADIR%%/data/prev.gif -%%DATADIR%%/data/up.gif -%%DATADIR%%/lib/__init__.py -%%DATADIR%%/lib/ecmds/__init__.py -%%DATADIR%%/lib/ecmds/configreader.py -%%DATADIR%%/lib/ecmds/ecmdsproc.py -%%DATADIR%%/lib/ecmds/error.py -%%DATADIR%%/lib/ecmds/highlight/__init__.py -%%DATADIR%%/lib/ecmds/highlight/formatter.py -%%DATADIR%%/lib/ecmds/preprocessor.py -%%DATADIR%%/lib/ecmds/templates.py -%%DATADIR%%/lib/ecmds/validator.py -%%DATADIR%%/lib/ecmds/xslprocessor.py -%%DATADIR%%/lib/plugins/data.py -%%DATADIR%%/lib/plugins/final.py -%%DATADIR%%/lib/plugins/glossary.py -%%DATADIR%%/lib/plugins/highlight.py -%%DATADIR%%/lib/plugins/index.py -%%DATADIR%%/lib/plugins/math.py -%%DATADIR%%/lib/plugins/picture.py -%%DATADIR%%/lib/plugins/strip.py -%%DATADIR%%/lib/plugins/table.py -%%DATADIR%%/lib/plugins/text.py -%%DATADIR%%/lib/plugins/verbatim.py -%%DATADIR%%/transform/DTD/ecromedos.dtd -%%DATADIR%%/transform/i18n/english.xml -%%DATADIR%%/transform/i18n/german.xml -%%DATADIR%%/transform/i18n/i18n.xml -%%DATADIR%%/transform/i18n/i18n.xsl -%%DATADIR%%/transform/latex/annotation.xsl -%%DATADIR%%/transform/latex/biblio.xsl -%%DATADIR%%/transform/latex/color.xsl -%%DATADIR%%/transform/latex/counter.xsl -%%DATADIR%%/transform/latex/ecmds.xsl -%%DATADIR%%/transform/latex/entities.xml -%%DATADIR%%/transform/latex/entities.xsl -%%DATADIR%%/transform/latex/equation.xsl -%%DATADIR%%/transform/latex/figure.xsl -%%DATADIR%%/transform/latex/index.xsl -%%DATADIR%%/transform/latex/latex.xsl -%%DATADIR%%/transform/latex/list.xsl -%%DATADIR%%/transform/latex/listing.xsl -%%DATADIR%%/transform/latex/main.xsl -%%DATADIR%%/transform/latex/section.xsl -%%DATADIR%%/transform/latex/style.xml -%%DATADIR%%/transform/latex/style.xsl -%%DATADIR%%/transform/latex/table.xsl -%%DATADIR%%/transform/latex/text.xsl -%%DATADIR%%/transform/latex/toc.xsl -%%DATADIR%%/transform/latex/utility.xsl -%%DATADIR%%/transform/pdflatex/ecmds.xsl -%%DATADIR%%/transform/shared/version.xsl -%%DATADIR%%/transform/shared/wspace.xsl -%%DATADIR%%/transform/xelatex/ecmds.xsl -%%DATADIR%%/transform/xelatex/entities.xml -%%DATADIR%%/transform/xhtml/annotation.xsl -%%DATADIR%%/transform/xhtml/biblio.xsl -%%DATADIR%%/transform/xhtml/color.xsl -%%DATADIR%%/transform/xhtml/counter.xsl -%%DATADIR%%/transform/xhtml/ecmds.xsl -%%DATADIR%%/transform/xhtml/entities.xml -%%DATADIR%%/transform/xhtml/entities.xsl -%%DATADIR%%/transform/xhtml/equation.xsl -%%DATADIR%%/transform/xhtml/figure.xsl -%%DATADIR%%/transform/xhtml/index.xsl -%%DATADIR%%/transform/xhtml/keys.xsl -%%DATADIR%%/transform/xhtml/list.xsl -%%DATADIR%%/transform/xhtml/listing.xsl -%%DATADIR%%/transform/xhtml/section.xsl -%%DATADIR%%/transform/xhtml/style.xml -%%DATADIR%%/transform/xhtml/table.xsl -%%DATADIR%%/transform/xhtml/text.xsl -%%DATADIR%%/transform/xhtml/toc.xsl -%%DATADIR%%/transform/xhtml/utility.xsl -%%DATADIR%%/transform/xhtml/xhtml.xsl diff --git a/textproc/py-wicked/Makefile b/textproc/py-wicked/Makefile deleted file mode 100644 index f6b10a2ccb9e..000000000000 --- a/textproc/py-wicked/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# $FreeBSD$ - -PORTNAME= wicked -PORTVERSION= 1.1.12 -CATEGORIES= textproc python zope -MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DIST_SUBDIR= zope - -MAINTAINER= zope@FreeBSD.org -COMMENT= Compact syntax for doing wiki-like content linking and creation - -LICENSE= GPLv2 - -DEPRECATED= Old, uses EOLed python27 -EXPIRATION_DATE= 2020-02-18 - -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.container>=0:devel/py-zope.container@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.lifecycleevent>=0:devel/py-zope.lifecycleevent@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.schema>=0:devel/py-zope.schema@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.traversing>=0:devel/py-zope.traversing@${PY_FLAVOR} - -USES= python:2.7 zip -USE_PYTHON= autoplist distutils - -.include <bsd.port.mk> diff --git a/textproc/py-wicked/distinfo b/textproc/py-wicked/distinfo deleted file mode 100644 index 2c6c0e4cd7b8..000000000000 --- a/textproc/py-wicked/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (zope/wicked-1.1.12.zip) = c60c9c1baaf80d9e162a4909b6748fa0147579a0da0bd751a30de6364e563e5a -SIZE (zope/wicked-1.1.12.zip) = 82478 diff --git a/textproc/py-wicked/pkg-descr b/textproc/py-wicked/pkg-descr deleted file mode 100644 index e25229053d13..000000000000 --- a/textproc/py-wicked/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -wicked is a compact syntax for doing wiki-like content linking and creation -in zope and plone. - -WWW: https://pypi.org/project/wicked/ diff --git a/textproc/py-zope.app.i18n/Makefile b/textproc/py-zope.app.i18n/Makefile deleted file mode 100644 index debeb72d592e..000000000000 --- a/textproc/py-zope.app.i18n/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# $FreeBSD$ - -PORTNAME= zope.app.i18n -PORTVERSION= 3.6.4 -PORTREVISION= 1 -CATEGORIES= textproc python zope -MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DIST_SUBDIR= zope - -MAINTAINER= zope@FreeBSD.org -COMMENT= Persistent translation domains and message catalogs - -LICENSE= ZPL21 - -DEPRECATED= Old, uses EOLed python27 -EXPIRATION_DATE= 2020-02-18 - -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.publisher>=3.9:devel/py-zope.publisher@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.component>=3.6:devel/py-zope.component@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.container>=0:devel/py-zope.container@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.configuration>=0:devel/py-zope.configuration@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.i18n>=0:devel/py-zope.i18n@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.i18nmessageid>=0:textproc/py-zope.i18nmessageid@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.interface>=0:devel/py-zope.interface@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.security>=0:security/py-zope.security@${PY_FLAVOR} \ - zodb${PYTHON_PKGNAMESUFFIX}>=0:databases/zodb3@${PY_FLAVOR} - -USES= python:2.7 -USE_PYTHON= distutils autoplist - -.include <bsd.port.mk> diff --git a/textproc/py-zope.app.i18n/distinfo b/textproc/py-zope.app.i18n/distinfo deleted file mode 100644 index e4a85a143cdc..000000000000 --- a/textproc/py-zope.app.i18n/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (zope/zope.app.i18n-3.6.4.tar.gz) = 55df6bdbccc8b4442068b63d358952abc68286afce26f6d72f380c6631ea1443 -SIZE (zope/zope.app.i18n-3.6.4.tar.gz) = 22214 diff --git a/textproc/py-zope.app.i18n/pkg-descr b/textproc/py-zope.app.i18n/pkg-descr deleted file mode 100644 index f509a3692a3b..000000000000 --- a/textproc/py-zope.app.i18n/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Persistent translation domains and message catalogs. - -WWW: https://pypi.org/project/zope.app.i18n/ |