FreeBSD Bugzilla – Attachment 10538 Details for
Bug 21098
Update port: net/adns - Update to v0.9
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
file.shar
file.shar (text/plain), 4.43 KB, created by
Peter Haight
on 2000-09-07 21:20:00 UTC
(
hide
)
Description:
file.shar
Filename:
MIME Type:
Creator:
Peter Haight
Created:
2000-09-07 21:20:00 UTC
Size:
4.43 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># adns ># adns/files ># adns/files/md5 ># adns/Makefile ># adns/pkg ># adns/pkg/COMMENT ># adns/pkg/DESCR ># adns/pkg/PLIST ># adns/patches ># adns/patches/patch-aa ># adns/patches/patch-ab ># adns/patches/patch-ac ># >echo c - adns >mkdir -p adns > /dev/null 2>&1 >echo c - adns/files >mkdir -p adns/files > /dev/null 2>&1 >echo x - adns/files/md5 >sed 's/^X//' >adns/files/md5 << 'END-of-adns/files/md5' >XMD5 (adns-0.9.tar.gz) = e23d38129972f36093b29c2f79fad38e >END-of-adns/files/md5 >echo x - adns/Makefile >sed 's/^X//' >adns/Makefile << 'END-of-adns/Makefile' >X# New ports collection makefile for: adns >X# Date created: Mon Mar 3, 2000 >X# Whom: Kostya Lukin <lukin@okbmei.msk.su> >X# >X# $FreeBSD: ports/net/adns/Makefile,v 1.6 2000/06/16 21:51:48 asami Exp $ >X# >X >XPORTNAME= adns >XPORTVERSION= 0.9 >XCATEGORIES= net >XMASTER_SITES= ${MASTER_SITE_GNU} \ >X ftp://ftp.chiark.greenend.org.uk/users/ian/adns/ >XMASTER_SITE_SUBDIR= adns >X >XMAINTAINER= lukin@okbmei.msk.su >X >XGNU_CONFIGURE= yes >XINSTALLS_SHLIB= yes >XUSE_GMAKE= yes >X >XCONFIGURE_ARGS= --enable-dynamic >X >Xpost-install: >X strip ${PREFIX}/bin/adnstest ${PREFIX}/bin/adnslogres ${PREFIX}/bin/adnshost >X >X.include <bsd.port.mk> >END-of-adns/Makefile >echo c - adns/pkg >mkdir -p adns/pkg > /dev/null 2>&1 >echo x - adns/pkg/COMMENT >sed 's/^X//' >adns/pkg/COMMENT << 'END-of-adns/pkg/COMMENT' >XEasy to use, asynchronous-capable DNS client library and utilities >END-of-adns/pkg/COMMENT >echo x - adns/pkg/DESCR >sed 's/^X//' >adns/pkg/DESCR << 'END-of-adns/pkg/DESCR' >Xadns is a resolver library for C (and C++) programs. In contrast with >Xthe existing interfaces, gethostbyname et al and libresolv, it has the >Xfollowing features: >X >X* It is reasonably easy to use for simple programs which just want >X to translate names to addresses, look up MX records, etc. >X* It can be used in an asynchronous, non-blocking, manner. Many >X queries can be handled simultaneously. >X >XTechnical note: adns requires a real nameserver like BIND or >XDents running on the same system or a nearby one, which must be >Xwilling to provide `recursive service'. I.e., adns is a `stub >Xresolver'. >X >XWWW: http://www.chiark.greenend.org.uk/~ian/adns/ >END-of-adns/pkg/DESCR >echo x - adns/pkg/PLIST >sed 's/^X//' >adns/pkg/PLIST << 'END-of-adns/pkg/PLIST' >Xbin/adnstest >Xbin/adnslogres >Xbin/adnshost >Xinclude/adns.h >Xlib/libadns.a >Xlib/libadns.so.0 >END-of-adns/pkg/PLIST >echo c - adns/patches >mkdir -p adns/patches > /dev/null 2>&1 >echo x - adns/patches/patch-aa >sed 's/^X//' >adns/patches/patch-aa << 'END-of-adns/patches/patch-aa' >X--- configure.orig Wed Nov 24 19:57:32 1999 >X+++ configure Mon Mar 20 18:35:47 2000 >X@@ -1457,7 +1457,7 @@ >X >X SHLIBFORLINK='libadns.so' >X SHLIBSONAME='$(SHLIBFORLINK).$(MAJOR)' >X-SHLIBFILE='$(SHLIBSONAME).$(MINOR)' >X+SHLIBFILE='$(SHLIBSONAME)' >X >X SHLIBCC='$(CC) $(CFLAGS) -fpic' >X MKSHLIB_1='$(CC) $(LDFLAGS) -shared -Wl,-soname=$(SHLIBSONAME) -o' >END-of-adns/patches/patch-aa >echo x - adns/patches/patch-ab >sed 's/^X//' >adns/patches/patch-ab << 'END-of-adns/patches/patch-ab' >X--- dynamic/Makefile.in.orig Fri Oct 15 21:57:50 1999 >X+++ dynamic/Makefile.in Mon Mar 20 18:41:21 2000 >X@@ -24,7 +24,7 @@ >X srcdir= @srcdir@ >X VPATH= @srcdir@ >X >X-TARGETS= $(SHLIBFILE) $(SHLIBSONAME) $(SHLIBFORLINK) >X+TARGETS= $(SHLIBFILE) $(SHLIBFORLINK) >X include $(srcdir)/../settings.make >X include $(srcdir)/../src/adns.make >X >X@@ -32,16 +32,12 @@ >X >X install: >X $(INSTALL_PROGRAM) $(SHLIBFILE) $(lib_dir)/$(SHLIBFILE) >X- ln -sf $(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME) >X >X uninstall: >X- rm -f $(lib_dir)/$(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME) >X+ rm -f $(lib_dir)/$(SHLIBFILE) >X >X $(SHLIBFORLINK): >X- ln -s $(SHLIBSONAME) $(SHLIBFORLINK) >X- >X-$(SHLIBSONAME): >X- ln -s $(SHLIBFILE) $(SHLIBSONAME) >X+ ln -s $(SHLIBFILE) $(SHLIBFORLINK) >X >X $(SHLIBFILE): $(ALLOBJS) >X rm -f $@ >END-of-adns/patches/patch-ab >echo x - adns/patches/patch-ac >sed 's/^X//' >adns/patches/patch-ac << 'END-of-adns/patches/patch-ac' >X--- src/adns.h.orig Thu Mar 2 04:34:04 2000 >X+++ src/adns.h Mon Apr 17 17:18:36 2000 >X@@ -62,9 +62,9 @@ >X >X #include <stdio.h> >X >X+#include <sys/types.h> >X #include <sys/socket.h> >X #include <netinet/in.h> >X-#include <sys/types.h> >X #include <sys/time.h> >X #include <unistd.h> >X >END-of-adns/patches/patch-ac >exit
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 21098
: 10538