blob: c4aaa8a891e2e8f62a5afe820e64ecdf0c504876 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# New ports collection makefile for: twill
# Date created: 15 June 2008
# Whom: 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
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>
|