summaryrefslogtreecommitdiff
path: root/databases/libdrizzle-redux/Makefile
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2014-05-25 07:33:03 +0000
committerMartin Wilke <miwi@FreeBSD.org>2014-05-25 07:33:03 +0000
commitaf4d94b920851d83da5867c2839c3e4368b7ab09 (patch)
treeb1e9f59b8359c73b1d124c9b05726eb9762f8e0c /databases/libdrizzle-redux/Makefile
parentPreppy is ReportLab's templating system. It was developed in late 2000 and has (diff)
Drizzle Client & Protocol Library. This project
is for the new development of the MySQL compatible C connector library called libdrizzle-redux. WWW: https://launchpad.net/libdrizzle PR: ports/185969 Submitted by: Jim Ohlstein <jim@ohlste.in>
Notes
Notes: svn path=/head/; revision=355134
Diffstat (limited to 'databases/libdrizzle-redux/Makefile')
-rw-r--r--databases/libdrizzle-redux/Makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/databases/libdrizzle-redux/Makefile b/databases/libdrizzle-redux/Makefile
new file mode 100644
index 000000000000..089e0753458f
--- /dev/null
+++ b/databases/libdrizzle-redux/Makefile
@@ -0,0 +1,39 @@
+# Created by: Jim Ohlstein <jim@ohlste.in>
+# $FreeBSD$
+
+PORTNAME= libdrizzle
+PORTVERSION= 5.1.4
+CATEGORIES= databases
+MASTER_SITES= http://launchpadlibrarian.net/138246183/
+PKGNAMESUFFIX= -redux
+DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
+EXTRACT_ONLY= libdrizzle-5.1.4.tar.gz
+
+MAINTAINER= jim@ohlste.in
+COMMENT= Client and protocol library for the Drizzle database
+
+LICENSE= BSD2CLAUSE
+
+GNU_CONFIGURE= yes
+USES= gmake
+USE_LDCONFIG= yes
+
+CONFLICTS= libdrizzle-[0-9]*
+
+OPTIONS_DEFINE= DOCS
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MDOCS}
+MASTER_SITES+= http://launchpadlibrarian.net/138246206/
+DISTFILES+= libdrizzle.pdf
+PLIST_SUB+= PORTDOCS=""
+.endif
+
+post-install:
+.if !empty(PORT_OPTIONS:MDOCS)
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${DISTDIR}/libdrizzle.pdf ${STAGEDIR}${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>