mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 12:34:40 +08:00
Not needed anymore
This commit is contained in:
parent
819271dac6
commit
faf7f0b4ae
@ -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
|
|
@ -1,50 +0,0 @@
|
|||||||
#
|
|
||||||
# Core Packages for Chakra, part of chakra-project.org
|
|
||||||
#
|
|
||||||
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
||||||
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
||||||
|
|
||||||
pkgname=libfetch
|
|
||||||
pkgver=2.33
|
|
||||||
pkgrel=2
|
|
||||||
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
|
|
||||||
http://chakra-project.org/sources/libfetch/$pkgname-$pkgver.tar.gz
|
|
||||||
fetch-handle-temp-redirect.patch)
|
|
||||||
md5sums=('7dffdd5a81bb32084a2f45e61f70dcf9'
|
|
||||||
'ddfed67895c3d33c05f15930381fe9ee'
|
|
||||||
'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 ../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
|
|
||||||
}
|
|
@ -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.
|
|
Loading…
Reference in New Issue
Block a user