e828bd16b5
have to retry upon EINTR instead of apr doing for them.
50 lines
1015 B
Makefile
50 lines
1015 B
Makefile
# $OpenBSD: Makefile,v 1.11 2007/04/26 16:05:01 kurt Exp $
|
|
|
|
COMMENT= "Apache Portable Runtime"
|
|
|
|
DISTNAME= apr-1.2.7
|
|
PKGNAME= ${DISTNAME}p2
|
|
FULLPKGNAME= apr${MT}-1.2.7p2
|
|
SHARED_LIBS += apr-1${MT} 2.7 # .2.7
|
|
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= Aleksander Piotrowski <alek@openbsd.org>
|
|
|
|
HOMEPAGE= http://apr.apache.org/
|
|
|
|
# Apache License 2.0
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_APACHE:=apr/}
|
|
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--includedir=${LOCALBASE}/include/apr-1${MT}/ \
|
|
--with-installbuilddir=${LOCALBASE}/lib/apr-1${MT}/ \
|
|
--enable-other-child
|
|
|
|
FLAVORS= mt
|
|
FLAVOR?=
|
|
|
|
SUBST_VARS+= MT
|
|
|
|
.if ${FLAVOR:L:Mmt}
|
|
MT=-mt
|
|
CONFIGURE_ARGS+= --enable-threads
|
|
|
|
post-install:
|
|
sed 's/{APR_LIBNAME}/{APR_LIBNAME}-mt/g' ${WRKSRC}/apr-config.out > ${PREFIX}/bin/apr-1-mt-config
|
|
|
|
.else
|
|
MT=
|
|
CONFIGURE_ARGS+= --disable-threads
|
|
.endif
|
|
MAKE_ENV+= MT=${MT}
|
|
|
|
.include <bsd.port.mk>
|