aboutsummaryrefslogtreecommitdiffstats
path: root/net-mgmt/chillispot/Makefile
blob: e7b261416525053083c88355f84d78e4e9b8df10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# New ports collection makefile for:   Chillispot
# Date created:                19 October 2005
# Whom:                        Sevan Janiyan <venture37@geeklan.co.uk>
#
# $FreeBSD$
#

PORTNAME=   chillispot
PORTVERSION=    1.0
PORTREVISION=   2
CATEGORIES= net-mgmt
MASTER_SITES=   http://www.chillispot.org/download/ \
        http://www.geeklan.co.uk/files/ \
        http://www.venture37.com/files/

MAINTAINER= venture37@geeklan.co.uk
COMMENT=    Wireless LAN Access Point Controller

GNU_CONFIGURE=  yes
USE_GETOPT_LONG=yes
CONFIGURE_TARGET=-build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS=-sysconfdir=${PREFIX}/etc
USE_RC_SUBR=    chillispot.sh
SUB_FILES=  pkg-message
MAN8=       chilli.8

OPTIONS=    RAW "Latest Release Of Apache & mySQL" Off \
        MATURE "Stable Releases of Apache with mod_ssl &  MySQL" Off \
        FREE "freeRADIUS" Off \
        OPENR "openradius" Off

.include <bsd.port.pre.mk>

.if defined(WITH_RAW)
RUN_DEPENDS+=   ${LOCALBASE}/sbin/httpd:${PORTSDIR}/www/apache20 \
    ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql50-server
.endif

.if defined(WITH_MATURE)
RUN_DEPENDS+=   ${LOCALBASE}/sbin/httpd:${PORTSDIR}/www/apache13-modssl \
    ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql41-server
.endif

.if defined(WITH_FREE)
RUN_DEPENDS+=   radiusd:${PORTSDIR}/net/freeradius
.endif

.if defined(WITH_OPENR)
RUN_DEPENDS+=   radiusd:${PORTSDIR}/net/openradius
.endif

post-install:
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DATADIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/chilli.conf ${DATADIR}/chilli.conf.sample
    ${INSTALL_MAN} ${WRKSRC}/doc/dictionary.chillispot ${DATADIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/freeradius.users ${DATADIR}
    ${INSTALL_MAN} ${WRKSRC}/doc/hotspotlogin.cgi ${DATADIR}
    ${INSTALL_MAN} ${FILESDIR}/installguide.txt ${DATADIR}
    ${INSTALL_MAN} ${FILESDIR}/pf.conf.sample ${DATADIR}
    ${INSTALL_MAN} ${FILESDIR}/ipfw-config.sample ${DATADIR}
.endif
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>