95295ed9e8
command-line interface. With twill, you can navigate through Web sites that use forms, cookies, and most standard Web features. twill supports automated Web testing and has a simple Python interface. WWW: http://twill.idyll.org/ PR: ports/124610 Submitted by: "Junji NAKANISHI" <jun-g@daemonfreaks.com> Approved by: gabor (mentor, implicit)
29 lines
621 B
Makefile
29 lines
621 B
Makefile
# 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>
|