mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
cb037d3c98
- Bump PORTREVISION for shlib change Changes: https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html Differential Revision: https://reviews.freebsd.org/D11172 PR: 219947 Exp-run by: antoine
39 lines
791 B
Makefile
39 lines
791 B
Makefile
# Created by: Brent J. Nordquist <bjn@visi.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gdbm
|
|
PORTVERSION= 1.13
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= GNU database manager
|
|
|
|
LICENSE= GPLv3+
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
USES= libtool:keepla readline
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
INFO= gdbm
|
|
|
|
OPTIONS_DEFINE= COMPAT NLS
|
|
OPTIONS_SUB= yes
|
|
COMPAT_DESC= Enable dbm/ndbm compatibility
|
|
COMPAT_CONFIGURE_ENABLE= libgdbm-compat
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|LIBS = @LIBS@ -lc|LIBS = @LIBS@|" \
|
|
-e "s|BINOWN = bin|BINOWN = root|" \
|
|
-e "s|BINGRP = bin|BINGRP = wheel|" \
|
|
-e "s|libgdbm.la libgdbm_compat.la|& gdbm.info|" \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|