Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Apr 2014 00:04:16 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r350750 - head/databases/libdrizzle
Message-ID:  <201404100004.s3A04Htl012441@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Thu Apr 10 00:04:16 2014
New Revision: 350750
URL: http://svnweb.freebsd.org/changeset/ports/350750
QAT: https://qat.redports.org/buildarchive/r350750/

Log:
  - Take maintainership
  - Stage
  - Fix DOXYGEN support
  - Replace tab with space in WWW
  - Add LICENSE

Modified:
  head/databases/libdrizzle/Makefile
  head/databases/libdrizzle/pkg-descr

Modified: head/databases/libdrizzle/Makefile
==============================================================================
--- head/databases/libdrizzle/Makefile	Thu Apr 10 00:04:04 2014	(r350749)
+++ head/databases/libdrizzle/Makefile	Thu Apr 10 00:04:16 2014	(r350750)
@@ -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 ${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}
-post-install::
-	@${INSTALL} -d ${EXAMPLESDIR}
+	@${INSTALL} -d ${STAGEDIR}${EXAMPLESDIR}
 .for i in ${SAMPLE_PROGS}
-	@${INSTALL_PROGRAM} ${WRKSRC}/examples/.libs/${i} ${EXAMPLESDIR}
+	@${INSTALL_PROGRAM} ${WRKSRC}/examples/.libs/${i} ${STAGEDIR}${EXAMPLESDIR}
 .endfor
 .endif
 
-.if ${ARCH} == "i386"
-CONFIGURE_ARGS+=--disable-64bit
-.endif
-
 .include <bsd.port.mk>

Modified: head/databases/libdrizzle/pkg-descr
==============================================================================
--- head/databases/libdrizzle/pkg-descr	Thu Apr 10 00:04:04 2014	(r350749)
+++ head/databases/libdrizzle/pkg-descr	Thu Apr 10 00:04:16 2014	(r350750)
@@ -5,4 +5,4 @@ communication (like proxies). Other lang
 extensions, Python DBI, Perl DBD, SWIG, ...) should be built off
 of this library.
 
-WWW:    https://launchpad.net/libdrizzle
+WWW: https://launchpad.net/libdrizzle



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404100004.s3A04Htl012441>