blob: 230da27eed00aec1e39fd70b3b6d9872475a9851 (
plain) (
blame)
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
|
# ports collection makefile for: perl interface to Berkeley DB v3
# Date created: 3 January 2001
# Whom: T. William Wells <bill@twwells.com>
#
# $FreeBSD$
#
PORTNAME= BerkeleyDB
PORTVERSION= 0.12
CATEGORIES= databases perl5
MASTER_SITES= $(MASTER_SITE_PERL_CPAN)
MASTER_SITE_SUBDIR= BerkeleyDB
PKGNAMEPREFIX= p5-
MAINTAINER= bill@twwells.com
LIB_DEPENDS= db3.1:${PORTSDIR}/databases/db3
PERL_CONFIGURE= yes
ALL_TARGET= all test
USE_PERL5= yes
post-patch:
${PERL} -pi -e 's|^(INCLUDE\s+= )./libraries/.*$$|$$1\$(PREFIX)/include/db3|g; \
s|^(LIB\s+= )./libraries/.*$$|$$1$(PREFIX)/lib|g' ${WRKSRC}/config.in
.include <bsd.port.mk>
|