summaryrefslogtreecommitdiff
path: root/core/libfetch
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-04-03 14:54:55 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-04-03 14:54:55 +0000
commitb618c3d0693aec564c6746238fd05d94e31d3b76 (patch)
tree4a4834f3097bba25dba1adeba4324080c1b4bf7b /core/libfetch
parent8cb5196780766f47b595410eed8ddbee2e8add08 (diff)
Tue Apr 3 14:54:45 UTC 2012
Diffstat (limited to 'core/libfetch')
-rw-r--r--core/libfetch/Makefile68
-rw-r--r--core/libfetch/PKGBUILD48
-rw-r--r--core/libfetch/fetch-handle-temp-redirect.patch15
3 files changed, 0 insertions, 131 deletions
diff --git a/core/libfetch/Makefile b/core/libfetch/Makefile
deleted file mode 100644
index 34f3b1d99..000000000
--- a/core/libfetch/Makefile
+++ /dev/null
@@ -1,68 +0,0 @@
-prefix = /usr
-DESTDIR =
-DEBUG = false
-FETCH_WITH_INET6 = true
-FETCH_WITH_OPENSSL = true
-
-WARNINGS = -Wall -Wstrict-prototypes -Wsign-compare -Wchar-subscripts \
- -Wpointer-arith -Wcast-align
-
-CFLAGS ?= -O2 -pipe
-
-CFLAGS += -fPIC $(WARNINGS)
-CFLAGS += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES
-CFLAGS += -DFTP_COMBINE_CWDS -DNETBSD
-
-ifeq ($(strip $(FETCH_WITH_INET6)), true)
-CFLAGS += -DINET6
-endif
-
-ifeq ($(strip $(FETCH_WITH_OPENSSL)), true)
-CFLAGS += -DWITH_SSL
-LDADD += -Wl,-lssl -Wl,-lcrypto
-endif
-
-INSTALL = install -c -D
-
-OBJS= fetch.o common.o ftp.o http.o file.o
-INCS= fetch.h common.h
-GEN = ftperr.h httperr.h
-MAN = libdownload.3
-
-all: libfetch.so libfetch.a
-.PHONY: all
-
-%.o: %.c $(INCS) $(GEN)
- $(CC) $(CFLAGS) -c $<
-
-ftperr.h: ftp.errors Makefile errlist.sh
- ./errlist.sh ftp_errlist FTP ftp.errors > $@
-
-httperr.h: http.errors Makefile errlist.sh
- ./errlist.sh http_errlist HTTP http.errors > $@
-
-libfetch.so: $(GEN) $(INCS) $(OBJS)
- rm -f $@
- $(CC) $(LDFLAGS) $(OBJS) $(LDADD) -shared -fPIC -o $@
-
-libfetch.a: $(GEN) $(INCS) $(OBJS)
- rm -f $@
- $(AR) rcs $@ $(OBJS)
-
-clean:
- rm -f libfetch.so libfetch.a *.o $(GEN)
-.PHONY: clean
-
-install: all
- $(INSTALL) -m 755 libfetch.so $(DESTDIR)$(prefix)/lib/libfetch.so
- $(INSTALL) -m 644 libfetch.a $(DESTDIR)$(prefix)/lib/libfetch.a
- $(INSTALL) -m 644 fetch.h $(DESTDIR)$(prefix)/include/fetch.h
- $(INSTALL) -m 644 fetch.3 $(DESTDIR)$(prefix)/share/man/man3/fetch.3
-.PHONY: install
-
-uninstall:
- rm -f $(DESTDIR)$(prefix)/lib/libfetch.so
- rm -f $(DESTDIR)$(prefix)/lib/libfetch.a
- rm -f $(DESTDIR)$(prefix)/include/fetch.h
- rm -f $(DESTDIR)$(prefix)/share/man/man3/fetch.3
-.PHONY: uninstall
diff --git a/core/libfetch/PKGBUILD b/core/libfetch/PKGBUILD
deleted file mode 100644
index 328ebcf88..000000000
--- a/core/libfetch/PKGBUILD
+++ /dev/null
@@ -1,48 +0,0 @@
-# $Id:$
-# Maintainer: Aaron Griffin <aaron@archlinux.org>
-# Contributor: Xavier Chantry <shiningxc@gmail.com>
-
-pkgname=libfetch
-pkgver=2.33
-pkgrel=3
-pkgdesc="URL based download library"
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('openssl>=1.0.0')
-url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/"
-source=(Makefile
- ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz
- fetch-handle-temp-redirect.patch)
-md5sums=('7dffdd5a81bb32084a2f45e61f70dcf9'
- 'a176b94f7f30344ef8a71c047ca2136b'
- '2ee40d7e7d76c39ae5500d89075ef8a6')
-
-# keep an upgrade path for older installations
-PKGEXT='.pkg.tar.gz'
-
-# source PKGBUILD && mksource
-mksource() {
- export CVSROOT=:pserver:anoncvs@anoncvs.NetBSD.org:/cvsroot
- D=pkgsrc/net/libfetch
- [ -d "$D" ] && cvs up "$D" || cvs co "$D"
- pushd "$D"
- dirname=$(sed -n 's/DISTNAME=.*\(libfetch-.*$\)/\1/p' Makefile)
- cp -r files $dirname
- tar -czv --exclude=CVS -f ../../../$dirname.tar.gz $dirname
- rm -r $dirname
- popd
-}
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- cp $srcdir/Makefile .
- make || return 1
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir install
- licdir=$pkgdir/usr/share/licenses/libfetch/
- mkdir -p $licdir
- sed -n -e '/Copyright (c)/,/SUCH DAMAGE\./p' common.c | cut -c '4-' > $licdir/LICENSE
-}
diff --git a/core/libfetch/fetch-handle-temp-redirect.patch b/core/libfetch/fetch-handle-temp-redirect.patch
deleted file mode 100644
index 351cbcfd8..000000000
--- a/core/libfetch/fetch-handle-temp-redirect.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: http.c
-===================================================================
-RCS file: /cvsroot/pkgsrc/net/libfetch/files/http.c,v
-retrieving revision 1.29
-diff -u -r1.29 http.c
---- http.c 24 Jan 2010 19:10:35 -0000 1.29
-+++ http.c 19 Apr 2011 13:29:04 -0000
-@@ -974,6 +974,7 @@
- case HTTP_MOVED_PERM:
- case HTTP_MOVED_TEMP:
- case HTTP_SEE_OTHER:
-+ case HTTP_TEMP_REDIRECT:
- /*
- * Not so fine, but we still have to read the
- * headers to get the new location.