New port: databases/pgbash
pgBash is a bash shell with the ability to directly connect to a PostgreSQL Database and use it while still being at a shell prompt with all its features. PR: ports/54271 Submitted by: Sascha Holzleiter <sascha@root-login.org>
This commit is contained in:
parent
25e587e6b7
commit
59f5611bc4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=96833
5 changed files with 58 additions and 0 deletions
|
@ -163,6 +163,7 @@
|
|||
SUBDIR += pear-DB
|
||||
SUBDIR += pgaccess
|
||||
SUBDIR += pgadmin3
|
||||
SUBDIR += pgbash
|
||||
SUBDIR += php-sqlrelay
|
||||
SUBDIR += phpmyadmin
|
||||
SUBDIR += phppgadmin
|
||||
|
|
49
databases/pgbash/Makefile
Normal file
49
databases/pgbash/Makefile
Normal file
|
@ -0,0 +1,49 @@
|
|||
# New ports collection makefile for: pgbash
|
||||
# Date created: 6 July 2003
|
||||
# Whom: Sascha Holzleiter <sascha@root-login.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= pgbash
|
||||
PORTVERSION= 7.3
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.psn.co.jp/PostgreSQL/pgbash/:pgsource \
|
||||
${MASTER_SITE_GNU:S/$/:bashsrc/}
|
||||
MASTER_SITE_SUBDIR= bash/:bashsrc
|
||||
DISTFILES= pgbash-7.3.tar.gz:pgsource \
|
||||
bash-2.05a.tar.gz:bashsrc
|
||||
EXTRACT_ONLY= pgbash-7.3.tar.gz
|
||||
|
||||
MAINTAINER= sascha@root-login.org
|
||||
COMMENT= SQL Bash Shell for PostgreSQL
|
||||
|
||||
LIB_DEPENDS= pq.3:${PORTSDIR}/databases/postgresql-client
|
||||
|
||||
WRKSRC= ${WRKDIR}/pgbash-7.3/src/bash-2.05a
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_REINPLACE= yes
|
||||
|
||||
post-extract:
|
||||
${ECHO_MSG} ">>> extracting bash"
|
||||
${TAR} -C ${WRKDIR}/pgbash-7.3/src -xzf ${DISTDIR}/bash-2.05a.tar.gz
|
||||
|
||||
pre-configure:
|
||||
${REINPLACE_CMD} -e 's|/etc/pgbashrc|${PREFIX}/etc/pgbashrc|g' \
|
||||
${WRKDIR}/pgbash-7.3/src/bash-2.05a-patch/shell.c.patch
|
||||
.for i in Makefile.in.patch builtins-Makefile.in.patch \
|
||||
builtins-declare.def.patch builtins-mkbuilrins.c.patch \
|
||||
builtins-set.def.patch builtins-setattr.def.patch configure.in.patch \
|
||||
configure.patch parse.y.patch shell.c.patch variables.c.patch
|
||||
${PATCH} -d ${WRKSRC} -p1 < ${WRKDIR}/pgbash-7.3/src/bash-2.05a-patch/${i}
|
||||
.endfor
|
||||
|
||||
do-configure:
|
||||
cd ${WRKSRC}; ./configure --pginc-prefix=${LOCALBASE}/include --pglib-prefix=${LOCALBASE}/lib
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/pgbash ${PREFIX}/bin
|
||||
${INSTALL_DATA} ${WRKDIR}/pgbash-7.3/rc/pgbashrc ${PREFIX}/etc/pgbashrc-dist
|
||||
|
||||
.include <bsd.port.mk>
|
2
databases/pgbash/distinfo
Normal file
2
databases/pgbash/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (pgbash-7.3.tar.gz) = e3e33423208a5a538708dc92001abf67
|
||||
MD5 (bash-2.05a.tar.gz) = eeabc3f624861c4a8a687f7701db3d06
|
4
databases/pgbash/pkg-descr
Normal file
4
databases/pgbash/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
pgBash is a bash shell with builtin SQL features
|
||||
for PostgreSQL
|
||||
|
||||
WWW: http://www.psn.co.jp/PostgreSQL/pgbash/
|
2
databases/pgbash/pkg-plist
Normal file
2
databases/pgbash/pkg-plist
Normal file
|
@ -0,0 +1,2 @@
|
|||
bin/pgbash
|
||||
etc/pgbashrc-dist
|
Loading…
Reference in a new issue