diff options
author | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2006-12-17 09:40:21 +0000 |
---|---|---|
committer | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2006-12-17 09:40:21 +0000 |
commit | 118d91a2647254ccd594f1671b7e5929bdf216c6 (patch) | |
tree | ab736a111e4d71c98c1c06bb3d01afa1b82aaceb /textproc/py-markdown2/Makefile | |
parent | 8063cb761e01ac790e436637f70abd9908450034 (diff) | |
download | ports-118d91a2647254ccd594f1671b7e5929bdf216c6.tar.gz ports-118d91a2647254ccd594f1671b7e5929bdf216c6.zip |
Markdown is two things: (1) a plain text formatting syntax; and (2) a
software tool that converts the plain text formatting to (X)HTML. The
formatting syntax is designed to be easy and intuitive for web authors
and resembles typical email formatting conventions. The resultant
(X)HTML is structurally valid.
WWW: http://www.freewisdom.org/projects/python-markdown
PR: ports/105992
Submitted by: Graham Todd <gtodd at bellanet.org>
Notes
Notes:
svn path=/head/; revision=180001
Diffstat (limited to 'textproc/py-markdown2/Makefile')
-rw-r--r-- | textproc/py-markdown2/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/textproc/py-markdown2/Makefile b/textproc/py-markdown2/Makefile new file mode 100644 index 000000000000..715f54b96bf2 --- /dev/null +++ b/textproc/py-markdown2/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: py-markdown +# Date created: 28 November 2006 +# Whom: Graham Todd <gtodd@bellanet.org> +# +# $FreeBSD$ +# + +PORTNAME= markdown +PORTVERSION= 1.6 +CATEGORIES= textproc python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= python-markdown +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME}-${PORTVERSION}a + +MAINTAINER= alexbl@FreeBSD.org +COMMENT= Text markup to HTML conversion engine for Python + +USE_ZIP= yes +USE_PYTHON= 2.4+ +USE_PYDISTUTILS= yes + +.include <bsd.port.mk> |