freebsd-ports/databases/p5-DBD-SQLite/Makefile
Norikatsu Shigemura 0001a6bc3f Fix build on 4.x.
Because perl 5.005 didn't have $Config{d_usleep},
  $Config{d_usleep} was compulsorily used by replaceement to 1.

Pointed out by:	pointyhat via kris
Reviewed by:	tobez
2005-08-28 07:16:33 +00:00

38 lines
964 B
Makefile

# New ports collection makefile for: p5-DBD-SQLite
# Date created: 2002/03/30
# Whom: nork@cityfujisawa.ne.jp
#
# $FreeBSD$
#
PORTNAME= DBD-SQLite
PORTVERSION= 1.09
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= DBD
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Provides access to SQLite3 databases through the DBI
PERL_CONFIGURE= yes
MAN3= DBD::SQLite.3
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI-137
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI-137
.else
BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
.endif
post-extract:
@${RM} -f ${WRKSRC}/getsqlite.pl
post-patch:
@${PERL} -i.bak -pe 's/\$$Config{d_usleep}/1/' ${WRKSRC}/Makefile.PL
.include <bsd.port.post.mk>