freebsd-ports/net/net-http/Makefile
Eitan Adler c59a3834c4 At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are
currently broken. This is a temporary measure until we organically stop using
:= or someone(s) spend a lot of time changing all the ports over.

Explicit duplication > := > = and this just moves ports one step to the left

Approved by:	portmgr
2012-01-21 17:40:15 +00:00

33 lines
734 B
Makefile

# ex:ts=8
# New ports collection makefile for: net-http
# Date created: May 15, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= net-http
PORTVERSION= 0.3.1
PORTREVISION= 3
CATEGORIES= net scheme
MASTER_SITES= http://evan.prodromou.name/software/net-http/
MAINTAINER= ports@FreeBSD.org
COMMENT= A library for doing HTTP client-side programming in Guile
BUILD_DEPENDS= guile:${PORTSDIR}/lang/guile
RUN_DEPENDS:= ${BUILD_DEPENDS}
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
.include <bsd.port.pre.mk>
GUILE_VER!= (cd ${PORTSDIR}/lang/guile && make -V GUILE_VER)
PLIST_SUB= GUILE_VER="${GUILE_VER}"
do-install:
${CP} -R ${WRKSRC}/net/ ${LOCALBASE}/share/guile/${GUILE_VER}/net/
.include <bsd.port.post.mk>