pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/fehqlibs Initial import of fehqlibs, a basic frame...
details: https://anonhg.NetBSD.org/pkgsrc/rev/0b4f281ecba1
branches: trunk
changeset: 324085:0b4f281ecba1
user: schmonz <schmonz%pkgsrc.org@localhost>
date: Sun Oct 07 12:53:54 2018 +0000
description:
Initial import of fehqlibs, a basic framework for byte, string, I/O,
socket, and IPv4/IPv6 handling in addition with the constant database
cdb together with dnsstub resolver routines for Internet services.
diffstat:
net/fehqlibs/DESCR | 3 +
net/fehqlibs/Makefile | 24 ++++++++++++++
net/fehqlibs/PLIST | 75 ++++++++++++++++++++++++++++++++++++++++++++++
net/fehqlibs/buildlink3.mk | 13 +++++++
net/fehqlibs/distinfo | 6 +++
5 files changed, 121 insertions(+), 0 deletions(-)
diffs (141 lines):
diff -r d86363c20a85 -r 0b4f281ecba1 net/fehqlibs/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/fehqlibs/DESCR Sun Oct 07 12:53:54 2018 +0000
@@ -0,0 +1,3 @@
+The fehQlibs provide a basic framework for byte, string, I/O, socket,
+and IPv4/IPv6 handling in addition with the constant database cdb
+together with dnsstub resolver routines for Internet services.
diff -r d86363c20a85 -r 0b4f281ecba1 net/fehqlibs/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/fehqlibs/Makefile Sun Oct 07 12:53:54 2018 +0000
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1 2018/10/07 12:53:54 schmonz Exp $
+
+DISTNAME= fehQlibs-09
+PKGNAME= fehqlibs-0.9
+CATEGORIES= net
+MASTER_SITES= https://www.fehcom.de/ipnet/fehQlibs/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= schmonz%NetBSD.org@localhost
+HOMEPAGE= https://www.fehcom.de/ipnet/qlibs.html
+COMMENT= State-of-the-art C routines for Internet services
+LICENSE= public-domain
+
+MAKE_JOBS_SAFE= no
+
+BUILD_TARGET= libs
+
+do-configure:
+ cd ${WRKSRC}; \
+ ${ECHO} "LIBDIR=${DESTDIR}${PREFIX}/lib/qlibs" >> ${WRKSRC}/conf-build; \
+ ${ECHO} "HDRDIR=${DESTDIR}${PREFIX}/include/qlibs" >> ${WRKSRC}/conf-build; \
+ ${MAKE} check
+
+.include "../../mk/bsd.pkg.mk"
diff -r d86363c20a85 -r 0b4f281ecba1 net/fehqlibs/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/fehqlibs/PLIST Sun Oct 07 12:53:54 2018 +0000
@@ -0,0 +1,75 @@
+@comment $NetBSD: PLIST,v 1.1 2018/10/07 12:53:54 schmonz Exp $
+include/qlibs/alloc.h
+include/qlibs/base64.h
+include/qlibs/buffer.h
+include/qlibs/byte.h
+include/qlibs/case.h
+include/qlibs/cdbmake.h
+include/qlibs/cdbread.h
+include/qlibs/close.h
+include/qlibs/direntry.h
+include/qlibs/dnsresolv.h
+include/qlibs/env.h
+include/qlibs/error.h
+include/qlibs/exit.h
+include/qlibs/fd.h
+include/qlibs/fifo.h
+include/qlibs/fmt.h
+include/qlibs/getln.h
+include/qlibs/getoptb.h
+include/qlibs/iopause.h
+include/qlibs/ip.h
+include/qlibs/lock.h
+include/qlibs/logmsg.h
+include/qlibs/ndelay.h
+include/qlibs/open.h
+include/qlibs/pathexec.h
+include/qlibs/prot.h
+include/qlibs/readclose.h
+include/qlibs/readwrite.h
+include/qlibs/rename.h
+include/qlibs/scan.h
+include/qlibs/seek.h
+include/qlibs/select.h
+include/qlibs/sig.h
+include/qlibs/socket_if.h
+include/qlibs/str.h
+include/qlibs/stralloc.h
+include/qlibs/tai.h
+include/qlibs/taia.h
+include/qlibs/timeout.h
+include/qlibs/timeoutconn.h
+include/qlibs/uint_t.h
+include/qlibs/wait.h
+lib/qlibs/alloc.a
+lib/qlibs/base64.o
+lib/qlibs/buffer.a
+lib/qlibs/byte.o
+lib/qlibs/case.a
+lib/qlibs/cdb.a
+lib/qlibs/dnsresolv.a
+lib/qlibs/env.a
+lib/qlibs/fd.a
+lib/qlibs/fmt.o
+lib/qlibs/fs.a
+lib/qlibs/getln.a
+lib/qlibs/getopt.a
+lib/qlibs/ip.a
+lib/qlibs/libdnsresolv.a
+lib/qlibs/libqlibs.a
+lib/qlibs/lock.a
+lib/qlibs/logmsg.a
+lib/qlibs/ndelay.a
+lib/qlibs/open.a
+lib/qlibs/pathexec.o
+lib/qlibs/prot.o
+lib/qlibs/qlibs.a
+lib/qlibs/readclose.o
+lib/qlibs/scan.o
+lib/qlibs/seek.a
+lib/qlibs/sig.a
+lib/qlibs/socket.a
+lib/qlibs/str.a
+lib/qlibs/stralloc.a
+lib/qlibs/time.a
+lib/qlibs/wait.a
diff -r d86363c20a85 -r 0b4f281ecba1 net/fehqlibs/buildlink3.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/fehqlibs/buildlink3.mk Sun Oct 07 12:53:54 2018 +0000
@@ -0,0 +1,13 @@
+# $NetBSD: buildlink3.mk,v 1.1 2018/10/07 12:53:54 schmonz Exp $
+
+BUILDLINK_TREE+= fehqlibs
+
+.if !defined(FEHQLIBS_BUILDLINK3_MK)
+FEHQLIBS_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.fehqlibs+=fehqlibs>=0.9
+BUILDLINK_PKGSRCDIR.fehqlibs?= ../../net/fehqlibs
+BUILDLINK_DEPMETHOD.fehqlibs?= build
+.endif # FEHQLIBS_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -fehqlibs
diff -r d86363c20a85 -r 0b4f281ecba1 net/fehqlibs/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/fehqlibs/distinfo Sun Oct 07 12:53:54 2018 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2018/10/07 12:53:54 schmonz Exp $
+
+SHA1 (fehQlibs-09.tgz) = 79df48d9194f3009f617bc75affa9f736f8337cb
+RMD160 (fehQlibs-09.tgz) = 686412f57a04783c40598bc7c24f6d7b3ef659dc
+SHA512 (fehQlibs-09.tgz) = a592209e2700f2deaeef21df7845a04ce72c4f4a79ffc5ce927bc4ca5b348b1efb0b832c4c369e4183f0d5159aadaf038354894076479b51b67815f8dcce923a
+Size (fehQlibs-09.tgz) = 73552 bytes
Home |
Main Index |
Thread Index |
Old Index