mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
28 lines
560 B
Makefile
28 lines
560 B
Makefile
# Created by: Junji NAKANISHI <jun-g@daemonfreaks.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= twill
|
|
PORTVERSION= 0.9
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://darcs.idyll.org/~t/projects/
|
|
|
|
MAINTAINER= jun-g@daemonfreaks.com
|
|
COMMENT= A simple scripting language for Web browsing
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/doc/ ${DOCSDIR}
|
|
.endif
|
|
|
|
.if !defined(NOPORTEXAMPLES)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${CP} -R ${WRKSRC}/examples/ ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|