diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2008-09-02 11:32:01 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2008-09-02 11:32:01 +0000 |
commit | 0f74e1f3b7ab3837441323423408766aa488a877 (patch) | |
tree | 3127cdd5b177803a8697abce007609d463a2bfd9 /databases/mysql-q4m/Makefile | |
parent | 9b0db62ef707ae55b775eb96e030633749e33966 (diff) |
Add mysql-q4m, a message queue that works as a pluggable storage
engine of MySQL.
Notes
Notes:
svn path=/head/; revision=219656
Diffstat (limited to 'databases/mysql-q4m/Makefile')
-rw-r--r-- | databases/mysql-q4m/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/databases/mysql-q4m/Makefile b/databases/mysql-q4m/Makefile new file mode 100644 index 000000000000..87b8864be653 --- /dev/null +++ b/databases/mysql-q4m/Makefile @@ -0,0 +1,50 @@ +# New ports collection makefile for: Q4M +# Date created: 1 September 2008 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= q4m +PORTVERSION= 0.8.3 +CATEGORIES= databases +MASTER_SITES= http://q4m.31tools.com/dist/ +PKGNAMEPREFIX= mysql${MYSQL_VER}- + +MAINTAINER= knu@FreeBSD.org +COMMENT= A message queue that works as a pluggable storage engine of MySQL + +BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/databases/mysql${MYSQL_VER}-server:build \ + ${LOCALBASE}/include/boost/spirit/core.hpp:${PORTSDIR}/devel/boost +RUN_DEPENDS= ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql${MYSQL_VER}-server + +USE_MYSQL= yes +WANT_MYSQL_VER?= 51 + +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \ + LDFLAGS="${PTHREAD_LIBS} -L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql" +CONFIGURE_ARGS= --prefix="${PREFIX}" \ + --libdir="${PREFIX}/lib/mysql/plugin" \ + --with-mysql="$$(cd ${PORTSDIR}/databases/mysql${MYSQL_VER}-server; ${MAKE} -V WRKSRC)" + +.if !defined(NOPORTDOCS) +PORTDOCS= AUTHORS ChangeLog README doc +PORTEXAMPLES= examples support-files + +post-install: + ${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + cd ${INSTALL_WRKSRC}; ${COPYTREE_SHARE} ${f} ${DOCSDIR} +.endfor + ${MKDIR} ${EXAMPLESDIR} +.for f in ${PORTEXAMPLES} + cd ${INSTALL_WRKSRC}; ${COPYTREE_SHARE} ${f} ${EXAMPLESDIR} +.endfor + ${RM} ${EXAMPLESDIR}/support-files/q4m-forward +.endif + +test: + cd ${BUILD_WRKSRC}; ${PERL} run_tests.pl + +.include <bsd.port.mk> |