mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
3f890c31c6
autoconf, autoheader, automake. [1] This should allow replacing custom pre-configure and run-autotools targets that some ports have with USE_AUTOTOOLS. - Set default LIBTOOLIZE_ARGS: -i: install missing build scripts. -c: copy files instead of linking them. This is needed for USES=libtool to be able to patch them. -f: force replacement of existing files. This ensures all files belong to the same version. database/vsqlite: - Fix with new LIBTOOLIZE_ARGS. - INSTALL_TARGET=install-strip. - Drop :keepla. Reported by: Nikola Kolev <koue@chaosophia.net> [1] Exp-run: antoine Approved by: portmgr (antoine)
32 lines
657 B
Makefile
32 lines
657 B
Makefile
# Created by: Koop Mast <kwm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vsqlite
|
|
PORTVERSION= 0.3.12
|
|
PORTREVISION= 3
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= Well designed and portable SQLite3 Wrapper for C++
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
LIB_DEPENDS= libboost_random.so:${PORTSDIR}/devel/boost-libs
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= vinzenz
|
|
GH_PROJECT= vsqlite--
|
|
GH_TAGNAME= 3fa8d32
|
|
GH_COMMIT= 3fa8d32
|
|
|
|
USES= compiler:c++0x libtool
|
|
USE_AUTOTOOLS= libtoolize aclocal autoconf automake
|
|
AUTOMAKE_ARGS= -a -c -f
|
|
USE_SQLITE= 3
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|