diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-05-15 04:57:00 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-05-15 04:57:00 +0000 |
commit | dba77cffc92b0d1097ff78a7cba57890136f9f6a (patch) | |
tree | d084f05bf0b1747431bb2be76a4ffa8da12261e2 /net/net-http/Makefile | |
parent | a24bb401d7df89c6bb7e4f5415831bd0347d6590 (diff) | |
download | FreeBSD-ports-dba77cffc92b0d1097ff78a7cba57890136f9f6a.zip FreeBSD-ports-dba77cffc92b0d1097ff78a7cba57890136f9f6a.tar.gz |
add net-http
A library for doing HTTP client-side programming in Guile
Diffstat (limited to 'net/net-http/Makefile')
-rw-r--r-- | net/net-http/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net/net-http/Makefile b/net/net-http/Makefile new file mode 100644 index 0000000..42257b1 --- /dev/null +++ b/net/net-http/Makefile @@ -0,0 +1,27 @@ +# ex:ts=8 +# New ports collection makefile for: net-http +# Date created: May 15, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= net-http +PORTVERSION= 0.2 +CATEGORIES= net +MASTER_SITES= http://evan.prodromou.san-francisco.ca.us/software/net-http/ + +MAINTAINER= ports@FreeBSD.org + +BUILD_DEPENDS= guile:${PORTSDIR}/lang/guile +RUN_DEPENDS= ${BUILD_DEPENDS} + +GNU_CONFIGURE= yes +WRKSRC= ${WRKDIR}/${PORTNAME} +NO_BUILD= yes + +do-install: + @${MKDIR} ${LOCALBASE}/share/guile/1.4/net + ${INSTALL_DATA} ${WRKSRC}/net/http.scm ${LOCALBASE}/share/guile/1.4/net + +.include <bsd.port.mk> |