diff options
author | itojun <itojun> | 2001-02-05 14:32:21 +0000 |
---|---|---|
committer | itojun <itojun> | 2001-02-05 14:32:21 +0000 |
commit | 6ecead19bdfd32cfa2dcf48f0eac6b702a4a9b6b (patch) | |
tree | 03595190560c5729b9043d4e57b24178fca4ee60 /www | |
parent | 8672e14ef1572741e1e46ec5eecc61e8a92c7348 (diff) | |
download | pkgsrc-6ecead19bdfd32cfa2dcf48f0eac6b702a4a9b6b.tar.gz |
curl 7.6, fetch data from an URL (similar to wget)
Diffstat (limited to 'www')
-rw-r--r-- | www/curl/Makefile | 16 | ||||
-rw-r--r-- | www/curl/files/md5 | 3 | ||||
-rw-r--r-- | www/curl/pkg/COMMENT | 1 | ||||
-rw-r--r-- | www/curl/pkg/DESCR | 16 | ||||
-rw-r--r-- | www/curl/pkg/PLIST | 26 | ||||
-rwxr-xr-x | www/curl/sort | 2 |
6 files changed, 64 insertions, 0 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile new file mode 100644 index 00000000000..7fca3cdae79 --- /dev/null +++ b/www/curl/Makefile @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/02/05 14:32:21 itojun Exp $ + +DISTNAME= curl-7.6 +CATEGORIES= www +MASTER_SITES= http://curl.haxx.se/download/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://curl.haxx.se/ + +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_LIBTOOL= yes +LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig +USE_SSL= yes + +.include "../../mk/bsd.pkg.mk" diff --git a/www/curl/files/md5 b/www/curl/files/md5 new file mode 100644 index 00000000000..7b504a84233 --- /dev/null +++ b/www/curl/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 2001/02/05 14:32:21 itojun Exp $ + +MD5 (curl-7.6.tar.gz) = 580ffaaf346b28f14ee8f3ddb0e76ec0 diff --git a/www/curl/pkg/COMMENT b/www/curl/pkg/COMMENT new file mode 100644 index 00000000000..d30ed236cc1 --- /dev/null +++ b/www/curl/pkg/COMMENT @@ -0,0 +1 @@ +client that groks URLs diff --git a/www/curl/pkg/DESCR b/www/curl/pkg/DESCR new file mode 100644 index 00000000000..5da8f0cfaa0 --- /dev/null +++ b/www/curl/pkg/DESCR @@ -0,0 +1,16 @@ + _ _ ____ _ + ___| | | | _ \| | + / __| | | | |_) | | + | (__| |_| | _ <| |___ + \___|\___/|_| \_\_____| + +README + + Curl is a command line tool for transfering data specified with URL + syntax. Find out how to use Curl by reading the curl.1 man page or the + MANUAL document. Find out how to install Curl by reading the INSTALL + document. + + libcurl is a library that Curl is using to do its job. It is readily + available to be used by your software. Read the LIBCURL document to + find out how! diff --git a/www/curl/pkg/PLIST b/www/curl/pkg/PLIST new file mode 100644 index 00000000000..6f543c669f7 --- /dev/null +++ b/www/curl/pkg/PLIST @@ -0,0 +1,26 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2001/02/05 14:32:21 itojun Exp $ +bin/curl +include/curl/curl.h +include/curl/easy.h +include/curl/mprintf.h +include/curl/stdcheaders.h +include/curl/types.h +lib/libcurl.a +lib/libcurl.la +lib/libcurl.so +lib/libcurl.so.1 +lib/libcurl.so.1.0 +man/man1/curl.1 +man/man3/curl_easy_cleanup.3 +man/man3/curl_easy_getinfo.3 +man/man3/curl_easy_init.3 +man/man3/curl_easy_perform.3 +man/man3/curl_easy_setopt.3 +man/man3/curl_formfree.3 +man/man3/curl_formparse.3 +man/man3/curl_getdate.3 +man/man3/curl_getenv.3 +man/man3/curl_slist_append.3 +man/man3/curl_slist_free_all.3 +man/man3/curl_version.3 +@dirrm include/curl diff --git a/www/curl/sort b/www/curl/sort new file mode 100755 index 00000000000..17685f0c87a --- /dev/null +++ b/www/curl/sort @@ -0,0 +1,2 @@ +#! /bin/sh +tee /tmp/sort.$$ | /usr/bin/sort $* |