diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-05 20:22:03 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-05 20:22:03 +0800 |
commit | 7c48582402b60f4e4fe1ba7c0618b09a4e78a9b8 (patch) | |
tree | 1734fda3f3333be257a9447e7abe515476f88a66 /net/mediaproxy | |
parent | 1bccce3ad376d0abee1884fe31a3eb6ce67d5056 (diff) | |
download | freebsd-ports-gnome-7c48582402b60f4e4fe1ba7c0618b09a4e78a9b8.tar.gz freebsd-ports-gnome-7c48582402b60f4e4fe1ba7c0618b09a4e78a9b8.tar.zst freebsd-ports-gnome-7c48582402b60f4e4fe1ba7c0618b09a4e78a9b8.zip |
Convert to new options framework, while here cleanup linknx
Diffstat (limited to 'net/mediaproxy')
-rw-r--r-- | net/mediaproxy/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net/mediaproxy/Makefile b/net/mediaproxy/Makefile index 4fb215eec6f1..3d4b4f3ec4c4 100644 --- a/net/mediaproxy/Makefile +++ b/net/mediaproxy/Makefile @@ -1,7 +1,4 @@ -# New ports collection makefile for: mediaproxy -# Date created: 08 August 2006 -# Whom: Steve Ames <steve@energistic.com> -# +# Created by: Steve Ames <steve@energistic.com> # $FreeBSD$ PORTNAME= mediaproxy @@ -20,11 +17,12 @@ USE_PYTHON= 2.5+ SUB_LIST+= PYTHON_CMD=${PYTHON_CMD} -OPTIONS= ACCOUNTING "ACCOUNTING support (Requires MySQL)" off +OPTIONS_DEFINE= ACCOUNTING +ACCOUNTING_DESC= ACCOUNTING support (Requires MySQL) .include <bsd.port.pre.mk> -.if defined(WITH_ACCOUNTING) +.if ${PORT_OPTIONS:MACCOUNTING} USE_MYSQL= yes .endif |