Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# $NetBSD: Makefile,v 1.11 2013/05/09 07:39:05 adam Exp $
#
PKGNAME= poco-data-sqlite-${POCO_VERSION}
PKGREVISION= 5
CATEGORIES= databases
COMMENT= POCO C++ SQLite RDBMS Accessor libraries
.include "../../devel/poco/Makefile.common"
CONFIGURE_ARGS+= --prefix=${PREFIX}
CONFIGURE_ARGS+= --omit=Data/MySQL,Data/ODBC,Zip,XML
CONFIGURE_ARGS+= --omit=Foundation,Net,NetSSL_OpenSSL
CONFIGURE_ARGS+= --no-tests
CONFIGURE_ARGS+= --no-samples
USE_TOOLS+= pax
BUILD_DIRS= Data/SQLite
INSTALLATION_DIRS= include/Poco/Data/SQLite lib
do-install:
# using the same logic as Poco's Makefile install target.
cd ${WRKSRC} && find lib -name 'libPoco*' -type f -exec cp -f {} \
${DESTDIR}${PREFIX}/lib \;
cd ${WRKSRC} && find lib -name 'libPoco*' -type l -exec cp -Rf {} \
${DESTDIR}${PREFIX}/lib \;
cd ${WRKSRC}/Data/SQLite && \
${PAX} -rw -v -pp include ${DESTDIR}${PREFIX}
.include "../../databases/sqlite3/buildlink3.mk"
.include "../../databases/poco-data/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"