1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

- Take maintainership

- Stage
- Fix DOXYGEN support
- Replace tab with space in WWW
- Add LICENSE
This commit is contained in:
Bryan Drewery 2014-04-10 00:04:16 +00:00
parent 6ba19179f0
commit e3b5cbc4c5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=350750
2 changed files with 19 additions and 18 deletions

View File

@ -6,48 +6,49 @@ PORTVERSION= 0.8
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://launchpadlibrarian.net/41155299/ \
LOCAL/glarkin
LOCAL/bdrewery/${PORTNAME}/
MAINTAINER= ports@FreeBSD.org
MAINTAINER= bdrewery@FreeBSD.org
COMMENT= Client and protocol library for the Drizzle database
LICENSE= BSD3CLAUSE
LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3
OPTIONS_DEFINE= DOXYGEN EXAMPLES
GNU_CONFIGURE= yes
USES= gmake
CONFIGURE_ARGS+=--enable-libsqlite3
USE_GMAKE= yes
USE_LDCONFIG= yes
SAMPLE_PROGS= client pipe_query proxy server simple \
simple_multi sqlite_server
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEB}
.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN}
BUILD_DEPENDS+= doxygen>=0:${PORTSDIR}/devel/doxygen
ALL_TARGET= all doxygen
PLIST_SUB+= PORTDOCS=""
post-install::
@${INSTALL} -d ${DOCSDIR}
@cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${DOCSDIR}
.else
PLIST_SUB+= PORTDOCS="@comment "
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
post-install::
@${INSTALL} -d ${EXAMPLESDIR}
.for i in ${SAMPLE_PROGS}
@${INSTALL_PROGRAM} ${WRKSRC}/examples/.libs/${i} ${EXAMPLESDIR}
.endfor
.endif
.if ${ARCH} == "i386"
CONFIGURE_ARGS+=--disable-64bit
.endif
post-install:
.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN}
@${INSTALL} -d ${STAGEDIR}${DOCSDIR}
@cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${INSTALL} -d ${STAGEDIR}${EXAMPLESDIR}
.for i in ${SAMPLE_PROGS}
@${INSTALL_PROGRAM} ${WRKSRC}/examples/.libs/${i} ${STAGEDIR}${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>

View File

@ -5,4 +5,4 @@ communication (like proxies). Other language interfaces (PHP
extensions, Python DBI, Perl DBD, SWIG, ...) should be built off
of this library.
WWW: https://launchpad.net/libdrizzle
WWW: https://launchpad.net/libdrizzle