mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
bf4fc50aad
No version bump needed, the issue was detected in a special openoffice-3-devel build Noted by: Maho NAKATA <maho@apache.org> on the apache@ list Feature safe: yes
39 lines
777 B
Makefile
39 lines
777 B
Makefile
# Created by: Craig Rodrigues <rodrigc@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= serf
|
|
PORTVERSION= 1.1.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= GOOGLE_CODE
|
|
MASTER_SITE_SUBDIR= db
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Serf HTTP client library
|
|
|
|
LIB_DEPENDS+= apr-1:${PORTSDIR}/devel/apr1
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
PROJECTHOST= serf
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS+= --with-apr=${LOCALBASE}/bin/apr-1-config \
|
|
--with-apr-util=${LOCALBASE}/bin/apu-1-config
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/^Requires.private/d' ${WRKSRC}/serf.pc.in
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/design-guide.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
check:
|
|
@cd ${WRKSRC}/ && ${MAKE} check
|
|
|
|
.include <bsd.port.mk>
|