29 lines
655 B
Makefile
29 lines
655 B
Makefile
# Created by: Douglas Thrift <douglas@douglasthrift.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= selenium
|
|
PORTVERSION= 3.6.0
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= douglas@douglasthrift.net
|
|
COMMENT= Python bindings for Selenium
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= FIREFOX
|
|
FIREFOX_DESC= Install Firefox
|
|
|
|
FIREFOX_USES= gecko:firefox
|
|
|
|
# Don't install binary Firefox extension
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/selenium/webdriver/firefox/amd64/x_ignore_nofocus.so
|
|
@${RM} ${WRKSRC}/selenium/webdriver/firefox/x86/x_ignore_nofocus.so
|
|
|
|
.include <bsd.port.mk>
|