openbsd-ports/www/mod_geoip/Makefile
alek 8cfd1aef1a - Use SHARED_ONLY
- Replace DEINSTALL script with UNMESSAGE and @unexec
- Bump PKGNAME
2005-02-05 10:56:28 +00:00

44 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.5 2005/02/05 10:56:28 alek 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>