freebsd-ports/net-mgmt/chillispot/Makefile
Rong-En Fan 741aa71483 Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
2008-08-21 06:18:49 +00:00

63 lines
1.8 KiB
Makefile

# 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= 3
CATEGORIES= net-mgmt
MASTER_SITES= http://www.chillispot.info/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
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(NOPORTDATA)
${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>