diff options
author | acm <acm@FreeBSD.org> | 2009-08-17 23:01:34 +0800 |
---|---|---|
committer | acm <acm@FreeBSD.org> | 2009-08-17 23:01:34 +0800 |
commit | 6a6e72876172288564289196da3c8bef5f5bb15e (patch) | |
tree | 5ed6548d04eb1434de6a607d0bb4ff871acaa321 /lang/gambas2-base | |
parent | f31fa3d9309c74e3b20d8a944095a1c96651bb71 (diff) | |
download | freebsd-ports-gnome-6a6e72876172288564289196da3c8bef5f5bb15e.tar.gz freebsd-ports-gnome-6a6e72876172288564289196da3c8bef5f5bb15e.tar.zst freebsd-ports-gnome-6a6e72876172288564289196da3c8bef5f5bb15e.zip |
- Add missing dependencies
- Remove BROKEN on gambas2-gb-db* ports
Reported by: pav, linimon, erwin
Diffstat (limited to 'lang/gambas2-base')
-rw-r--r-- | lang/gambas2-base/Makefile | 1 | ||||
-rw-r--r-- | lang/gambas2-base/Makefile.components | 16 |
2 files changed, 11 insertions, 6 deletions
diff --git a/lang/gambas2-base/Makefile b/lang/gambas2-base/Makefile index ab8ccca1aaca..eda292a75969 100644 --- a/lang/gambas2-base/Makefile +++ b/lang/gambas2-base/Makefile @@ -15,6 +15,7 @@ DIST_SUBDIR= ${PORTNAME:S/2//g} MAINTAINER= acm@FreeBSD.org COMMENT?= A basic language with object extensions +BUILD_DEPENDS= xdg-mime:${PORTSDIR}/devel/xdg-utils LIB_DEPENDS= ffi.5:${PORTSDIR}/devel/libffi USE_AUTOTOOLS= autoconf:262:env automake:19:env diff --git a/lang/gambas2-base/Makefile.components b/lang/gambas2-base/Makefile.components index fbbf28cee71d..8d5e9282554a 100644 --- a/lang/gambas2-base/Makefile.components +++ b/lang/gambas2-base/Makefile.components @@ -22,7 +22,8 @@ USE_SDL= sdl mixer .endif .if ${PKGNAMESUFFIX} == "-gb-db-firebird" -BROKEN= does not install +BUILD_DEPENDS+= gbi2:${PORTSDIR}/lang/gambas2-base + USE_FIREBIRD= yes CONFIGURE_ARGS+= --with-firebird-includes=${LOCALBASE}/include \ @@ -30,7 +31,8 @@ CONFIGURE_ARGS+= --with-firebird-includes=${LOCALBASE}/include \ .endif .if ${PKGNAMESUFFIX} == "-gb-db-mysql" -BROKEN= does not install +BUILD_DEPENDS+= gbi2:${PORTSDIR}/lang/gambas2-base + USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql-includes=${LOCALBASE}/include/mysql \ @@ -38,7 +40,7 @@ CONFIGURE_ARGS+= --with-mysql-includes=${LOCALBASE}/include/mysql \ .endif .if ${PKGNAMESUFFIX} == "-gb-db-postgresql" -BROKEN= does not install +BUILD_DEPENDS+= gbi2:${PORTSDIR}/lang/gambas2-base USE_PGSQL= yes CONFIGURE_ARGS+= --with-postgresql-includes="${PGSQL_INCLUDES}" \ @@ -50,7 +52,7 @@ PGSQL_INCLUDES= ${LOCALBASE}/include/postgresql \ .endif .if ${PKGNAMESUFFIX} == "-gb-db-odbc" -BROKEN= does not install +BUILD_DEPENDS+= gbi2:${PORTSDIR}/lang/gambas2-base LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+= --with-odbc-includes=${LOCALBASE}/include \ @@ -58,7 +60,8 @@ CONFIGURE_ARGS+= --with-odbc-includes=${LOCALBASE}/include \ .endif .if ${PKGNAMESUFFIX} == "-gb-db-sqlite2" -BROKEN= does not install +BUILD_DEPENDS+= gbi2:${PORTSDIR}/lang/gambas2-base + USE_SQLITE= 2 CONFIGURE_ARGS+= --with-sqlite2-includes=${LOCALBASE}/include \ @@ -66,7 +69,8 @@ CONFIGURE_ARGS+= --with-sqlite2-includes=${LOCALBASE}/include \ .endif .if ${PKGNAMESUFFIX} == "-gb-db-sqlite3" -BROKEN= does not install +BUILD_DEPENDS+= gbi2:${PORTSDIR}/lang/gambas2-base + USE_SQLITE= yes CONFIGURE_ARGS+= --with-sqlite3-includes=${LOCALBASE}/include \ |