diff options
author | jtb <jtb@pkgsrc.org> | 2001-02-08 06:01:05 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-02-08 06:01:05 +0000 |
commit | 19168c929f425372483973e27f864396211a7bc7 (patch) | |
tree | b317187ec73087b624add1826b9d78964aaa1680 /math/dcdflib.c/patches | |
parent | b7c79dbff26c58e8f67e09e9655b025fac35b878 (diff) | |
download | pkgsrc-19168c929f425372483973e27f864396211a7bc7.tar.gz |
Use generic BSD build system for making shared libraries. (No more libtool).
Diffstat (limited to 'math/dcdflib.c/patches')
-rw-r--r-- | math/dcdflib.c/patches/patch-ab | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/math/dcdflib.c/patches/patch-ab b/math/dcdflib.c/patches/patch-ab index e6660041f91..e7f59a922b3 100644 --- a/math/dcdflib.c/patches/patch-ab +++ b/math/dcdflib.c/patches/patch-ab @@ -1,25 +1,19 @@ -$NetBSD: patch-ab,v 1.1.1.1 2001/01/29 06:13:54 jtb Exp $ +$NetBSD: patch-ab,v 1.2 2001/02/08 06:01:06 jtb Exp $ ---- /dev/null Mon Jan 29 05:11:27 2001 +--- /dev/null Thu Feb 8 05:50:43 2001 +++ Makefile -@@ -0,0 +1,20 @@ -+LIB = dcdflib +@@ -0,0 +1,14 @@ ++LIB= dcdflib + -+LIBDIR = ${PREFIX}/lib ++SHLIB_MAJOR=0 ++SHLIB_MINOR=0 + -+all: lib$(LIB).la ++LIBDIR=${PREFIX}/lib + -+OBJS = dcdflib.o ipmpar.o ++NOLINT=1 + -+lib$(LIB).la: $(OBJS) -+ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ $(OBJS:.o=.lo) -lm \ -+ -rpath $(LIBDIR) --version-info 0:0 ++SRCS= dcdflib.c ipmpar.c + -+.c.o: -+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $< ++INCS= cdflib.h + -+install: lib$(LIB).la -+ $(LIBTOOL) --mode=install $(BSD_INSTALL_DATA) $? $(LIBDIR) -+ -+clean: -+ rm -fr *.o *.lo .libs lib$(LIB).la ++.include <bsd.lib.mk> |