blob: 2f7494299a1e3bb96681728e01ef01287a12285e (
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
28
29
30
31
32
33
34
|
# New ports collection makefile for: apr
# Date created: 28 May 2008
# Whom: Craig Rodrigues <rodrigc@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= serf
PORTVERSION= 0.2.0
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= db
MAINTAINER= rodrigc@FreeBSD.org
COMMENT= Serf HTTP client library
LIB_DEPENDS+= apr:${PORTSDIR}/devel/apr
PROJECTHOST= serf
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CONFIGURE_ARGS+= --with-apr=${LOCALBASE}/bin/apr-1-config \
--with-apr-util=${LOCALBASE}/bin/apu-1-config
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/design-guide.txt ${DOCSDIR}
.endif
.include <bsd.port.mk>
|