diff options
author | ijliao <ijliao@FreeBSD.org> | 2004-06-10 09:46:52 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2004-06-10 09:46:52 +0800 |
commit | 09e57ecfa786afde47b78b3ce4a5ef9c8cd5539a (patch) | |
tree | 8d4e125161616dd8564db45d36eb634fb60740ae /misc | |
parent | 83dbcfa2a13ca43f494e415e178fff9620c2f9a3 (diff) | |
download | freebsd-ports-graphics-09e57ecfa786afde47b78b3ce4a5ef9c8cd5539a.tar.gz freebsd-ports-graphics-09e57ecfa786afde47b78b3ce4a5ef9c8cd5539a.tar.zst freebsd-ports-graphics-09e57ecfa786afde47b78b3ce4a5ef9c8cd5539a.zip |
add pylize 1.1b
A presentation generation tool
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/pylize/Makefile | 33 | ||||
-rw-r--r-- | misc/pylize/distinfo | 2 | ||||
-rw-r--r-- | misc/pylize/pkg-descr | 14 |
4 files changed, 50 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index dd433f7c2ce..10ffc9959e1 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -331,6 +331,7 @@ SUBDIR += py-osd SUBDIR += py-pexpect SUBDIR += pybliographer + SUBDIR += pylize SUBDIR += pypanda SUBDIR += qbrew SUBDIR += qlas diff --git a/misc/pylize/Makefile b/misc/pylize/Makefile new file mode 100644 index 00000000000..db1c851cac4 --- /dev/null +++ b/misc/pylize/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# Ports collection makefile for: pylize +# Date created: Jun 10, 2004 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= pylize +PORTVERSION= 1.1b +CATEGORIES= misc +MASTER_SITES= http://www.chrisarndt.de/en/software/pylize/download/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= A presentation generation tool + +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/HTMLgen.py:${PORTSDIR}/www/py-HTMLgen \ + ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/HTMLgen.py:${PORTSDIR}/www/py-HTMLgen \ + ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging + +USE_BZIP2= yes +USE_PYTHON= yes + +PLIST_FILES= bin/pylize + +post-install: + @${FIND} ${DATADIR} ! -type d | \ + ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} + @${FIND} ${DATADIR} -type d | ${SORT} -r | \ + ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + +.include <bsd.port.mk> diff --git a/misc/pylize/distinfo b/misc/pylize/distinfo new file mode 100644 index 00000000000..4e6ba84bde5 --- /dev/null +++ b/misc/pylize/distinfo @@ -0,0 +1,2 @@ +MD5 (pylize-1.1b.tar.bz2) = ce2f0e9aa37ce4ba262527b49355a6f1 +SIZE (pylize-1.1b.tar.bz2) = 52914 diff --git a/misc/pylize/pkg-descr b/misc/pylize/pkg-descr new file mode 100644 index 00000000000..d8f1d4bd97f --- /dev/null +++ b/misc/pylize/pkg-descr @@ -0,0 +1,14 @@ +pylize is a presentation generation tool. Among its features are: + * generates a template master document + * creates a set of HTML slides from the master document + * automatically creates the table of contents and distributes it to + serveral slides if necessary + * a nice CSS driven slide layout, including logo, navigation links, + progress-bar etc. + * easy navigation by accesskeys and single-key presses (through JavaScript) + * easy changing of layout through templates + * all information for a presentation in one master file, but configurable + through a per-user options file + * fully localized + +WWW: http://www.chrisarndt.de/software/pylize/ |