33 lines
760 B
Makefile
33 lines
760 B
Makefile
# $OpenBSD: Makefile,v 1.3 2004/01/30 08:39:49 xsa Exp $
|
|
|
|
COMMENT= "find the country where IP address/hostname originates from"
|
|
|
|
DISTNAME= GeoIP-1.2.0
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.maxmind.com/geoip/
|
|
MASTER_SITES= http://www.maxmind.com/download/geoip/api/c/
|
|
|
|
MAINTAINER= Xavier Santolaria <xsa@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --datadir=/var/db \
|
|
${CONFIGURE_SHARED}
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/GeoIP
|
|
|
|
FAKE_FLAGS= ${DESTDIRNAME}=${WRKINST} \
|
|
DEFAULT_CONFIG_FILE=${EXAMPLESDIR}/GeoIP.conf \
|
|
DEFAULT_DB_FILE=${EXAMPLESDIR}/GeoIP.dat
|
|
|
|
pre-install:
|
|
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|