diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-02 19:51:11 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-02 19:51:11 +0000 |
commit | 66d6b88640f4cd5ba993bc20a1a0c5f51272d1ba (patch) | |
tree | 7857d7d2c997ca48bd0f43d57bbcda695aed321a /databases | |
parent | Add our own do-install target so we respect ${PREFIX}. (diff) |
DBOW is a database compiler-compiler or front-end. It takes table
definitions in a relatively high-level language and prepares C,
C++, PHP, Perl (etc) functions for manipulating the database. It
will also produce SQL table data for MySQL.
WWW: http://dbow.sf.net/
PR: ports/66112
Submitted by: Dermot Tynan <dtynan@kalopa.com>
Notes
Notes:
svn path=/head/; revision=108195
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/dbow/Makefile | 23 | ||||
-rw-r--r-- | databases/dbow/distinfo | 2 | ||||
-rw-r--r-- | databases/dbow/pkg-descr | 9 | ||||
-rw-r--r-- | databases/dbow/pkg-plist | 8 |
5 files changed, 43 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index f1be225772d9..5d82527d3e74 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -25,6 +25,7 @@ SUBDIR += dbf2mysql SUBDIR += dbh SUBDIR += dbmetrix + SUBDIR += dbow SUBDIR += dbtool SUBDIR += dbview SUBDIR += edb diff --git a/databases/dbow/Makefile b/databases/dbow/Makefile new file mode 100644 index 000000000000..af90122625fc --- /dev/null +++ b/databases/dbow/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: dbow +# Date created: 24 March 2004 +# Whom: Dermot Tynan <dtynan@kalopa.com> +# +# $FreeBSD$ +# + +PORTNAME= dbow +PORTVERSION= 0.4 +CATEGORIES= databases devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= dbow + +MAINTAINER= dtynan@kalopa.com +COMMENT= DBOW is a database object generator for C, Perl, PHP, etc + +USE_MYSQL= yes +USE_REINPLACE= yes + +post-patch: + @${REINPLACE_CMD} -e 's|example||' ${WRKSRC}/Makefile + +.include <bsd.port.mk> diff --git a/databases/dbow/distinfo b/databases/dbow/distinfo new file mode 100644 index 000000000000..47b5370e6f63 --- /dev/null +++ b/databases/dbow/distinfo @@ -0,0 +1,2 @@ +MD5 (dbow-0.4.tar.gz) = 35f8f0ffdd0d12384df39748f61f8bdf +SIZE (dbow-0.4.tar.gz) = 29923 diff --git a/databases/dbow/pkg-descr b/databases/dbow/pkg-descr new file mode 100644 index 000000000000..906301b723e2 --- /dev/null +++ b/databases/dbow/pkg-descr @@ -0,0 +1,9 @@ +DBOW is a database compiler-compiler or front-end. It takes table +definitions in a relatively high-level language and prepares C, +C++, PHP, Perl (etc) functions for manipulating the database. It +will also produce SQL table data for MySQL. + +WWW: http://dbow.sf.net/ + +- Dermot Tynan +dtynan@kalopa.com diff --git a/databases/dbow/pkg-plist b/databases/dbow/pkg-plist new file mode 100644 index 000000000000..9f995c240a41 --- /dev/null +++ b/databases/dbow/pkg-plist @@ -0,0 +1,8 @@ +bin/dbow +include/dbow.h +lib/libdbow.a +share/dbow/c.m4 +share/dbow/mysql.m4 +share/dbow/perl.m4 +share/dbow/php.m4 +@dirrm share/dbow |