9923023b05
airControl is a powerful and intuitive web based server network management application which allows operators to centrally manage entire networks of Ubiquiti wireless network devices.
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/06/03 23:30:45 sthen Exp $
|
|
|
|
COMMENT= management tool for Ubiquiti wireless devices
|
|
|
|
DISTNAME= aircontrol-1.1.01-beta
|
|
PKGNAME= ${DISTNAME:S/-beta/beta/}
|
|
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.ubnt.com/aircontrol
|
|
|
|
PERMIT_PACKAGE_CDROM= proprietary license
|
|
PERMIT_PACKAGE_FTP= proprietary license
|
|
PERMIT_DISTFILES_CDROM= proprietary license
|
|
PERMIT_DISTFILES_FTP= proprietary license
|
|
|
|
MASTER_SITES= http://www.ubnt.com/downloads/aircontrol/
|
|
|
|
MODULES= java
|
|
MODJAVA_VER= 1.6+
|
|
MODJAVA_JRERUN= Yes
|
|
|
|
RUN_DEPENDS= ::java/javaPathHelper
|
|
|
|
PREFIX= /var/aircontrol
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
WRKDIST= ${WRKDIR}/aircontrol
|
|
|
|
pre-patch:
|
|
cd ${WRKDIST}; \
|
|
perl -i -pe 's/\r$$//' README LICENSE \
|
|
conf/catalina.properties
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}
|
|
${INSTALL_DATA_DIR} ${PREFIX}/work
|
|
cd ${WRKDIST}; pax -rw * ${PREFIX}
|
|
cd ${PREFIX}; \
|
|
chown -R ${SHAREOWN}:${SHAREGRP} .; \
|
|
chmod -R g+rwX work logs temp conf data; \
|
|
chmod -R +x bin/*sh; \
|
|
rm bin/*bat
|
|
mv ${PREFIX}/data ${PREFIX}/data.dist
|
|
mv ${PREFIX}/conf ${PREFIX}/conf.dist
|
|
|
|
.include <bsd.port.mk>
|