mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
b2c4fbb77a
Introduces the UTF-32 library pcre32 Bump PORTREVISION in dependent ports
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# New ports collection makefile for: mysql-udf-preg
|
|
# Date created: October 27, 2011
|
|
# Whom: Philip M. Gollucci <pgollucci@p6m7g8.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mysql-udf-preg
|
|
PORTVERSION= 1.0.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.mysqludf.org/lib_mysqludf_preg/
|
|
DISTNAME= lib_mysqludf_preg-${PORTVERSION}
|
|
|
|
MAINTAINER= pgollucci@FreeBSD.org
|
|
COMMENT= Library of MySQL UDFs providing access to PCRE
|
|
|
|
LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/mysql/plugin
|
|
USE_GMAKE= yes
|
|
USE_MYSQL= yes
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/lib_mysqludf_preg-${PORTVERSION}
|
|
|
|
PLIST_FILES= lib/mysql/plugin/lib_mysqludf_preg.a \
|
|
lib/mysql/plugin/lib_mysqludf_preg.la \
|
|
lib/mysql/plugin/lib_mysqludf_preg.so \
|
|
%%DATADIR%%/installdb.sql \
|
|
%%DATADIR%%/uninstalldb.sql
|
|
PLIST_DIRS= ${DATADIR_REL} lib/mysql/plugin
|
|
|
|
post-install:
|
|
${MKDIR} ${DATADIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/installdb.sql ${DATADIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/uninstalldb.sql ${DATADIR}/
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|