diff options
author | rh <rh> | 2000-03-30 14:59:26 +0000 |
---|---|---|
committer | rh <rh> | 2000-03-30 14:59:26 +0000 |
commit | 3fc40e2a2b207b509e699a6fcd727aadafcd2478 (patch) | |
tree | a90ab5f336596bd12f4f436a19fe737482966048 /net/libsscript | |
parent | 433327b77a767b5b8038d5258cd05a860ab9d445 (diff) | |
download | pkgsrc-3fc40e2a2b207b509e699a6fcd727aadafcd2478.tar.gz |
Initial import of libsscript-2.0, a simple library for creating network
oriented software in C.
Diffstat (limited to 'net/libsscript')
-rw-r--r-- | net/libsscript/Makefile | 18 | ||||
-rw-r--r-- | net/libsscript/files/md5 | 3 | ||||
-rw-r--r-- | net/libsscript/files/patch-sum | 3 | ||||
-rw-r--r-- | net/libsscript/patches/patch-aa | 27 | ||||
-rw-r--r-- | net/libsscript/pkg/COMMENT | 1 | ||||
-rw-r--r-- | net/libsscript/pkg/DESCR | 4 | ||||
-rw-r--r-- | net/libsscript/pkg/PLIST | 7 |
7 files changed, 63 insertions, 0 deletions
diff --git a/net/libsscript/Makefile b/net/libsscript/Makefile new file mode 100644 index 00000000000..a634b1fd1f6 --- /dev/null +++ b/net/libsscript/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/03/30 14:59:26 rh Exp $ +# + +DISTNAME= sscript-lib2.0 +PKGNAME= libsscript-2.0 +CATEGORIES= net devel +MASTER_SITES= http://www.linuxave.net/~drow/SocketScript/ +EXTRACT_SUFX= .tar + +MAINTAINER= rh@netbsd.org +HOMEPAGE= http://www.linuxave.net/~drow/SocketScript/ + +DECOMPRESS_CMD= ${CAT} + +NO_CONFIGURE= YES +USE_LIBTOOL= YES + +.include "../../mk/bsd.pkg.mk" diff --git a/net/libsscript/files/md5 b/net/libsscript/files/md5 new file mode 100644 index 00000000000..4d06f6dfbd6 --- /dev/null +++ b/net/libsscript/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 2000/03/30 14:59:28 rh Exp $ + +MD5 (sscript-lib2.0.tar) = ca62353b1557df3ac43c7d35a62b588c diff --git a/net/libsscript/files/patch-sum b/net/libsscript/files/patch-sum new file mode 100644 index 00000000000..710b69b99d4 --- /dev/null +++ b/net/libsscript/files/patch-sum @@ -0,0 +1,3 @@ +$NetBSD: patch-sum,v 1.1.1.1 2000/03/30 14:59:28 rh Exp $ + +MD5 (patch-aa) = d8663917826faa3ba492793cf24f81f3 diff --git a/net/libsscript/patches/patch-aa b/net/libsscript/patches/patch-aa new file mode 100644 index 00000000000..0e1d56762b4 --- /dev/null +++ b/net/libsscript/patches/patch-aa @@ -0,0 +1,27 @@ +$NetBSD: patch-aa,v 1.1.1.1 2000/03/30 14:59:28 rh Exp $ + +--- Makefile.orig Wed Feb 2 02:01:39 2000 ++++ Makefile Thu Mar 30 16:53:45 2000 +@@ -1,15 +1,15 @@ + # SScript library makefile. + +-CC = gcc +-CFLAGS = -O -Wall +- + all: +- ${CC} ${CFLAGS} -c sscript.c +- ar rc libsscript.a sscript.o +- ranlib libsscript.a ++ ${LIBTOOL} --mode=compile ${CC} ${CFLAGS} -c sscript.c ++ ${LIBTOOL} --mode=link cc -o libsscript.la sscript.lo -rpath ${PREFIX}/lib -version-info 2:0 + + install: +- cp libsscript.a /usr/lib/libsscript.a ++ ${LIBTOOL} --mode=install ${BSD_INSTALL_DATA} libsscript.la ${PREFIX}/lib ++ ${BSD_INSTALL_DATA_DIR} ${PREFIX}/include/libsscript ++ ${BSD_INSTALL_DATA} sscript.h ${PREFIX}/include/libsscript ++ ${BSD_INSTALL_DATA_DIR} ${PREFIX}/share/doc/libsscript ++ ${BSD_INSTALL_DATA} sscript-lib.doc ${PREFIX}/share/doc/libsscript + + clean: + rm -f *.a *.o *~ diff --git a/net/libsscript/pkg/COMMENT b/net/libsscript/pkg/COMMENT new file mode 100644 index 00000000000..3e1c76b11fb --- /dev/null +++ b/net/libsscript/pkg/COMMENT @@ -0,0 +1 @@ +simple library for creating network oriented software in C diff --git a/net/libsscript/pkg/DESCR b/net/libsscript/pkg/DESCR new file mode 100644 index 00000000000..1bc2436fb28 --- /dev/null +++ b/net/libsscript/pkg/DESCR @@ -0,0 +1,4 @@ + Socket Script Lib is a simple library which can be used to create +network-oriented software in C. It provides functions to do common +socket features. It is based on the Socket Script scripting +language created in 1997. diff --git a/net/libsscript/pkg/PLIST b/net/libsscript/pkg/PLIST new file mode 100644 index 00000000000..19839f0b139 --- /dev/null +++ b/net/libsscript/pkg/PLIST @@ -0,0 +1,7 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2000/03/30 14:59:26 rh Exp $ +include/libsscript/sscript.h +lib/libsscript.a +lib/libsscript.so.2.0 +share/doc/libsscript/sscript-lib.doc +@dirrm share/doc/libsscript +@dirrm include/libsscript |