0121ac94f4
I've run into a handful of perl ports that are not jobs safe. I've been hesitating to mark them as such, but this port has shown up multiple times on the fail-to-build list. There are other perl ports that also fail quite often with high "j" numbers, so I'll start marking them. This one fails to build the libmhttp.a archive which is a typical error seen when at least one of the object files is missing.
26 lines
525 B
Makefile
26 lines
525 B
Makefile
# Created by: Sergey Skvortsov <skv@protey.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= HTTP-MHTTP
|
|
PORTVERSION= 0.15
|
|
PORTREVISION= 1
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Low level access to the HTTP protocol
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure patch
|
|
USE_OPENSSL= yes
|
|
CONFIGURE_ENV= GOTSSL=yes
|
|
CONFIGURE_ARGS= --default
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's!(?<=POSSIBLE_SSL_DIRS = qw\().*(?=\);)!${OPENSSLBASE}!;' \
|
|
${WRKSRC}/Makefile.PL
|
|
|
|
.include <bsd.port.mk>
|