diff options
author | wxs <wxs@FreeBSD.org> | 2011-12-26 03:34:40 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2011-12-26 03:34:40 +0800 |
commit | edc5fb39736bc55a3afa1a7e2bbfeca43480e443 (patch) | |
tree | b96811c696b176c896ac1668394938aecd8f0387 /security | |
parent | 22d0ce133ffe8e12c3f0585c1ae45c6e678d23b9 (diff) | |
download | freebsd-ports-gnome-edc5fb39736bc55a3afa1a7e2bbfeca43480e443.tar.gz freebsd-ports-gnome-edc5fb39736bc55a3afa1a7e2bbfeca43480e443.tar.zst freebsd-ports-gnome-edc5fb39736bc55a3afa1a7e2bbfeca43480e443.zip |
Switch to using bsd.port.options.mk and remove unnecessary assignments.
While here, be explicit with RUN_DEPENDS (pet pet portlint).
PR: ports/162754
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk>
Approved by: miwi@ (maintainer timeout)
Diffstat (limited to 'security')
-rw-r--r-- | security/pear-Crypt_RSA/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/security/pear-Crypt_RSA/Makefile b/security/pear-Crypt_RSA/Makefile index 0737877ea49b..adab7fcdd4ff 100644 --- a/security/pear-Crypt_RSA/Makefile +++ b/security/pear-Crypt_RSA/Makefile @@ -13,18 +13,14 @@ MAINTAINER= miwi@FreeBSD.org COMMENT= PEAR class allows you to use two-key strong cryptography BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear OPTIONS= BCMATH "PHP BCMath extension support" off \ GMP "PHP GMP extension support" off -PORT_DBDIR?= /var/db/ports LATEST_LINK= pear-${PORTNAME} -OPTIONSFILE?= ${PORT_DBDIR}/${LATEST_LINK}/options -.if exists(${OPTIONSFILE}) -.include "${OPTIONSFILE}" -.endif +.include <bsd.port.options.mk> .for opt in BCMATH GMP . if defined(WITH_${opt}) |