blob: 76359d83864f78b3c2adb6543a98a5f9414c0a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
PORTNAME= dbh
PORTVERSION= 5.0.22
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= SF
DISTNAME= libdbh2-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Disk Based Hashtables
LICENSE= GPLv3
CONFLICTS= dbh-[0-4]*
USES= libtool pkgconfig
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-pkglibdata
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
OPTIONS_DEFINE= DOCS
DOCS_CONFIGURE_ENABLE= gtk-doc-html
post-patch:
# Fix the build on big-endian architectures.
@${REINPLACE_CMD} -e '/fractalidad/d' ${WRKSRC}/src/dbh_static.i
# Needed to remove gtk-doc installation.
post-patch-DOCS-off:
@${REINPLACE_CMD} -e 's|^\(SUBDIRS = src man\).*|\1|' \
${WRKSRC}/Makefile.in
.include <bsd.port.mk>
|