openbsd-ports/x11/gnustep/sqlclient/Makefile
sebastia 0c948960ba import GNUstep SQLClient framework:
The SQLClient library is designed to provide a simple interface to SQL
databases for GNUstep applications. It does not attempt the sort of
abstraction provided by the much more sophisticated GDL2 library but
rather allows applications to directly execute SQL queries and
statements.

SQLClient provides for the Objective-C programmer much the same thing
that JDBC provides for the Java programmer.

OK landry@
2011-09-17 07:26:08 +00:00

33 lines
869 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2011/09/17 07:26:08 sebastia Exp $
COMMENT = GNUstep database abstraction layer
VERSION = 1.5.2
DISTNAME = SQLClient-${VERSION}
PKGNAME = gnustep-sqlclient-${VERSION}
SHARED_LIBS += SQLClient 0.0
CATEGORIES = databases
HOMEPAGE = http://wiki.gnustep.org/index.php/SQLClient
MASTER_SITES = ${MASTER_SITE_GNUSTEP:=libs/}
MODULES = x11/gnustep
MODGNUSTEP_NEEDS_GUI = No
WANTLIB += Performance pq ecpg mysqlclient sqlite3
WANTLIB += gnustep-base m objc
LIB_DEPENDS += x11/gnustep/performance \
databases/mysql \
databases/postgresql \
databases/sqlite3
CONFIGURE_STYLE = gnu
CONFIGURE_ARGS = --with-additional-include="-I${LOCALBASE}/include \
-I${LOCALBASE}/include/postgresql" \
--with-additional-lib=-L${LOCALBASE}/lib
MAKE_FLAGS += SQLClient_INTERFACE_VERSION=${LIBSQLClient_VERSION}
.include <bsd.port.mk>