openbsd-ports/www/mod_geoip/Makefile
espie 100b45279f convert a few libspecs to new style.
Note: no package bump, those are only BUILD dependencies,
the pkg_create code will create the correct wantlib specs.
2006-08-01 10:50:19 +00:00

44 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.6 2006/08/01 10:50:19 espie Exp $
COMMENT= "Apache module for finding the country of web requests"
# This port currently only works with archs supporting dynamic loading
# and has Apache that supports DSO's.
SHARED_ONLY= Yes
DISTNAME= mod_geoip_1.2.6
PKGNAME= mod_geoip-1.2.6p0
CATEGORIES= www
HOMEPAGE= http://www.maxmind.com/app/mod_geoip
MASTER_SITES= http://www.maxmind.com/download/geoip/api/mod_geoip/
# Apache Software License
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
LIB_DEPENDS= GeoIP.>=4::net/GeoIP
FLAGS= -I${LOCALBASE}/include -L${LOCALBASE}/lib
NO_REGRESS= Yes
APXS= /usr/sbin/apxs
do-build:
cd ${WRKSRC} && \
${APXS} -c -o mod_geoip.so ${FLAGS} -lGeoIP mod_geoip.c
@sed 's,!!PREFIX!!,${PREFIX},' \
< ${FILESDIR}/mod_geoip-enable \
> ${WRKBUILD}/mod_geoip-enable
do-install:
${INSTALL_DATA} ${WRKBUILD}/mod_geoip.so ${PREFIX}/lib
${INSTALL_SCRIPT} ${WRKBUILD}/mod_geoip-enable ${PREFIX}/sbin
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mod_geoip
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/mod_geoip
.include <bsd.port.mk>