2006-01-07 01:28:20 +01:00
|
|
|
# New ports collection makefile for: ip4r
|
|
|
|
# Date created: 15th December 2005
|
|
|
|
# Whom: Ade Lovett <ade@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= ip4r
|
2008-02-04 22:46:02 +01:00
|
|
|
PORTVERSION= 1.03
|
2008-06-06 16:17:21 +02:00
|
|
|
PORTREVISION= 1
|
2006-01-07 01:28:20 +01:00
|
|
|
CATEGORIES= databases net
|
2008-02-04 22:46:02 +01:00
|
|
|
MASTER_SITES= http://pgfoundry.org/frs/download.php/1581/
|
2006-01-07 01:28:20 +01:00
|
|
|
|
|
|
|
MAINTAINER= ade@FreeBSD.org
|
|
|
|
COMMENT= IPv4 and IPv4 range index type for PostgreSQL
|
|
|
|
|
|
|
|
USE_PGSQL= YES
|
|
|
|
USE_GMAKE= YES
|
2006-01-19 05:21:46 +01:00
|
|
|
DEFAULT_PGSQL_VER= 81
|
2006-01-07 01:28:20 +01:00
|
|
|
|
|
|
|
# 74 is not strictly true, but requires extracting the appropriate
|
|
|
|
# postgresql-contrib tarball, and associated heavy lifting.
|
|
|
|
# In order to keep this port simple, we assume >= 8.0
|
2006-07-05 04:30:58 +02:00
|
|
|
IGNORE_WITH_PGSQL= 73 74
|
2006-01-07 01:28:20 +01:00
|
|
|
|
|
|
|
MAKE_ARGS= USE_PGXS=1
|
|
|
|
|
|
|
|
# In order to make this port PREFIX-safe, we override the install target
|
|
|
|
# and install the three files manually
|
|
|
|
do-install:
|
|
|
|
@${INSTALL} -m ${BINMODE} ${WRKSRC}/ip4r.so ${PREFIX}/lib/postgresql
|
|
|
|
@${MKDIR} ${PREFIX}/share/postgresql/contrib
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/ip4r.sql \
|
|
|
|
${PREFIX}/share/postgresql/contrib
|
|
|
|
@${MKDIR} ${PREFIX}/share/doc/postgresql/contrib
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/README.ip4r \
|
|
|
|
${PREFIX}/share/doc/postgresql/contrib
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|