diff options
author | steve <steve@FreeBSD.org> | 2001-02-26 04:24:44 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2001-02-26 04:24:44 +0000 |
commit | 93eed3da96729b7973ab845a538b67ed047f5a39 (patch) | |
tree | e7607a4c910f5b242c03fad0617680bf7395809e | |
parent | ff9db134bf453a06024532dda466f28a427c2a11 (diff) | |
download | FreeBSD-ports-93eed3da96729b7973ab845a538b67ed047f5a39.zip FreeBSD-ports-93eed3da96729b7973ab845a538b67ed047f5a39.tar.gz |
Tweak post-install target and the wording in pkg-descr.
PR: 24563
Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
Approved by: old maintainer
-rw-r--r-- | databases/gdbm/Makefile | 6 | ||||
-rw-r--r-- | databases/gdbm/pkg-descr | 13 |
2 files changed, 12 insertions, 7 deletions
diff --git a/databases/gdbm/Makefile b/databases/gdbm/Makefile index c943ff8..0435865 100644 --- a/databases/gdbm/Makefile +++ b/databases/gdbm/Makefile @@ -11,14 +11,16 @@ CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= gdbm -MAINTAINER= bjn@visi.com +MAINTAINER= clefevre@citeweb.net USE_LIBTOOL= yes INSTALLS_SHLIB= yes MAN3= gdbm.3 +INSTALL_INFO?= install-info + post-install: - @install-info ${PREFIX}/info/gdbm.info ${PREFIX}/info/dir + @${INSTALL_INFO} ${PREFIX}/info/${PORTNAME}.info ${PREFIX}/info/dir .include <bsd.port.mk> diff --git a/databases/gdbm/pkg-descr b/databases/gdbm/pkg-descr index 0f9a2aa..bbb93ea 100644 --- a/databases/gdbm/pkg-descr +++ b/databases/gdbm/pkg-descr @@ -1,6 +1,9 @@ -GNU `dbm' is a library of functions implementing a hashed database -on a disk file. The software was written by Philip A. Nelson. +The GNU `dbm' is a library of database functions that use extendible +hashing and works similar to the standard UNIX `dbm' functions. +These routines are provided to a programmer needing to create and +manipulate a hashed database. -Port to FreeBSD 2.1 by -Brent J. Nordquist <bjn@visi.com> -Mon Apr 8 06:27:31 1996 +This library exists in the FreeBSD base collection, but the GNU +version has added functionality that is sometimes useful. + +WWW: http://www.gnu.org/software/gdbm/gdbm.html |