diff options
author | ade <ade@FreeBSD.org> | 2000-09-20 02:19:19 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-09-20 02:19:19 +0800 |
commit | c4b043e2daf43ee813d60775e21b93b40fc822fb (patch) | |
tree | 5c5c5c871dc9107be2689c805ed98294d306a051 | |
parent | fa33259dfa6686f55d4fc70ce2d864146371ee73 (diff) | |
download | freebsd-ports-gnome-c4b043e2daf43ee813d60775e21b93b40fc822fb.tar.gz freebsd-ports-gnome-c4b043e2daf43ee813d60775e21b93b40fc822fb.tar.zst freebsd-ports-gnome-c4b043e2daf43ee813d60775e21b93b40fc822fb.zip |
Another GTK+ front-end for mysql.. submitter will be extending it
to handle mSQL, Oracle, PostgreSQL and Solid at a later date.
PR: 21069
Submitted by: Joseph Scott <joseph.scott@owp.csus.edu>
-rw-r--r-- | databases/Makefile | 3 | ||||
-rw-r--r-- | databases/dbmetrix/Makefile | 33 | ||||
-rw-r--r-- | databases/dbmetrix/distinfo | 1 | ||||
-rw-r--r-- | databases/dbmetrix/pkg-comment | 1 | ||||
-rw-r--r-- | databases/dbmetrix/pkg-descr | 14 | ||||
-rw-r--r-- | databases/dbmetrix/pkg-plist | 1 |
6 files changed, 52 insertions, 1 deletions
diff --git a/databases/Makefile b/databases/Makefile index 311332c0b72d..36daa0f53b03 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -4,8 +4,9 @@ SUBDIR += cdb SUBDIR += db SUBDIR += db3 - SUBDIR += dbview SUBDIR += dbf2mysql + SUBDIR += dbmetrix + SUBDIR += dbview SUBDIR += freetds SUBDIR += gadfly SUBDIR += gdbm diff --git a/databases/dbmetrix/Makefile b/databases/dbmetrix/Makefile new file mode 100644 index 000000000000..342831345df4 --- /dev/null +++ b/databases/dbmetrix/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: dbmetrix +# Date created: Tue Sep 5 15:30:00 PDT 2000 +# Whom: Joseph Scott <joseph@randomnetworks.com> +# +# $FreeBSD$ +# + +PORTNAME= dbmetrix +PORTVERSION= 0.1.9 +CATEGORIES= databases +MASTER_SITES= ftp://ftp.tamos.net/pub/dbMetrix/ \ + ftp://linux.gmu.edu/archive/dbMetrix/ + +MAINTAINER= joseph@randomnetworks.com + +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ + mysqlclient.6:${PORTSDIR}/databases/mysql322-client + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-mysql=${PREFIX} --prefix=${PREFIX} +CONFIGURE_ENV= GTK_CONFIG=${GTK_CONFIG} + +pre-configure: + @${PERL} -pi -e "s.gtk-config.${GTK_CONFIG}.g" ${WRKSRC}/Makefile.in + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/dbmetrix ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/databases/dbmetrix/distinfo b/databases/dbmetrix/distinfo new file mode 100644 index 000000000000..6cdd7f2a150d --- /dev/null +++ b/databases/dbmetrix/distinfo @@ -0,0 +1 @@ +MD5 (dbmetrix-0.1.9.tar.gz) = 872f25a3e6f0fd21428dcef73b1b1e9f diff --git a/databases/dbmetrix/pkg-comment b/databases/dbmetrix/pkg-comment new file mode 100644 index 000000000000..e5c1819c0a4e --- /dev/null +++ b/databases/dbmetrix/pkg-comment @@ -0,0 +1 @@ +Another GTK+ frontend for mysql diff --git a/databases/dbmetrix/pkg-descr b/databases/dbmetrix/pkg-descr new file mode 100644 index 000000000000..9da4a8196407 --- /dev/null +++ b/databases/dbmetrix/pkg-descr @@ -0,0 +1,14 @@ +dbMetrix is a copy-lefted, open-sourced SQL database tool. My goal is to +write a very graphical, clean, consistent, modularized front end to +various (currently opensourced) SQL servers. I plan to incorporate +administration utilities, sql dumps, dbf2sql/sql2dbf and client support +for all supported data sources. My motivation for writing dbMetrix is a +current lack of nice, truely GUI SQL admin/client tools. Most of the tools +available are written for a single, specific SQL server in mind and are +usually only a GUI-fied text interface. dbMetrix supports multiple and +various SQL servers simultaneously, however it is not a multi-threaded +application. + +David E. Storey <dave@tomas.net> + +WWW: http://apoc.tamos.net/sw/dbMetrix/ diff --git a/databases/dbmetrix/pkg-plist b/databases/dbmetrix/pkg-plist new file mode 100644 index 000000000000..cc6ef4fb8b94 --- /dev/null +++ b/databases/dbmetrix/pkg-plist @@ -0,0 +1 @@ +bin/dbmetrix |