New port: databases/libpbl - Peter Graf's Program Base Library
Peter Graf's Program Base Library of C functions. Includes hash table, ISAM, key file implementations. WWW: http://mission.base.com/peter/source/ PR: ports/91257 Submitted by: hideo <hideo@lastamericanempire.com>
This commit is contained in:
parent
fa60e70988
commit
3665b4ea65
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=152686
4 changed files with 53 additions and 0 deletions
|
@ -90,6 +90,7 @@
|
||||||
SUBDIR += libiodbc
|
SUBDIR += libiodbc
|
||||||
SUBDIR += libmemcache
|
SUBDIR += libmemcache
|
||||||
SUBDIR += libodbc++
|
SUBDIR += libodbc++
|
||||||
|
SUBDIR += libpbl
|
||||||
SUBDIR += libsdb
|
SUBDIR += libsdb
|
||||||
SUBDIR += libudbc
|
SUBDIR += libudbc
|
||||||
SUBDIR += linux-oracle-instantclient-basic
|
SUBDIR += linux-oracle-instantclient-basic
|
||||||
|
|
45
databases/libpbl/Makefile
Normal file
45
databases/libpbl/Makefile
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# New ports collection makefile for: databases/libpbl
|
||||||
|
# Date Created: 2 Jan 2006
|
||||||
|
# Whom: Zach Thompson <hideo@lastamericanempire.com>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= libpbl
|
||||||
|
PORTVERSION= 1.03
|
||||||
|
CATEGORIES= databases
|
||||||
|
MASTER_SITES= http://mission.base.com/peter/source/
|
||||||
|
DISTNAME= pbl_1_03
|
||||||
|
|
||||||
|
MAINTAINER= hideo@lastamericanempire.com
|
||||||
|
COMMENT= Peter Graf's Program Base Library
|
||||||
|
|
||||||
|
ALL_TARGET= libpbl.a
|
||||||
|
MAKEFILE= makefile
|
||||||
|
USE_REINPLACE= yes
|
||||||
|
PLIST_FILES= lib/libpbl.a include/pbl.h
|
||||||
|
|
||||||
|
.ifndef(NOPORTDOCS)
|
||||||
|
PORTDOCS= *
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.pre.mk>
|
||||||
|
|
||||||
|
post-extract:
|
||||||
|
@${REINPLACE_CMD} -e 's/= -Wall -O3/+= -Wall/' ${WRKSRC}/makefile
|
||||||
|
@${REINPLACE_CMD} -e 's/%d/%zd/' ${WRKSRC}/pbl.c
|
||||||
|
@${REINPLACE_CMD} -e 's/dir\.h/dirent\.h/' ${WRKSRC}/pbl.h
|
||||||
|
@${REINPLACE_CMD} -e 's/malloc\.h/stdlib\.h/' \
|
||||||
|
${WRKSRC}/pbl.h ${WRKSRC}/pbl.c ${WRKSRC}/pblhash.c
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/libpbl.a ${LOCALBASE}/lib
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/pbl.h ${LOCALBASE}/include
|
||||||
|
|
||||||
|
post-install:
|
||||||
|
.ifndef(NOPORTDOCS)
|
||||||
|
@${MKDIR} ${DOCSDIR}
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.post.mk>
|
3
databases/libpbl/distinfo
Normal file
3
databases/libpbl/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
MD5 (pbl_1_03.tar.gz) = 452b1f802dfb2da7ceaaf647eb8564c8
|
||||||
|
SHA256 (pbl_1_03.tar.gz) = dc14cdf46cacf3d634c49c1487dde8e4469269f87eaa9e6205f6ada2f6cee87e
|
||||||
|
SIZE (pbl_1_03.tar.gz) = 114672
|
4
databases/libpbl/pkg-descr
Normal file
4
databases/libpbl/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Peter Graf's Program Base Library of C functions.
|
||||||
|
Includes hash table, ISAM, key file implementations.
|
||||||
|
|
||||||
|
WWW: http://mission.base.com/peter/source/
|
Loading…
Reference in a new issue