diff options
author | tron <tron@pkgsrc.org> | 2002-03-10 20:43:46 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-03-10 20:43:46 +0000 |
commit | 5c4eaf50661d177557972e9294a07800a709d53a (patch) | |
tree | 8e557879b9796049feae583bb936c36b8e0fab4d /misc | |
parent | 7902014ae00551798945286eb35d5932e09dec03 (diff) | |
download | pkgsrc-5c4eaf50661d177557972e9294a07800a709d53a.tar.gz |
Link shared libraries in correct order when building "kpilot" as suggested
by Richard Rauch in private e-mail. This fixes PR pkg/15814.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/kdepim2/distinfo | 3 | ||||
-rw-r--r-- | misc/kdepim2/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/misc/kdepim2/distinfo b/misc/kdepim2/distinfo index 7a59c21cc7c..a17cdffe7b2 100644 --- a/misc/kdepim2/distinfo +++ b/misc/kdepim2/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2001/12/03 15:37:17 skrll Exp $ +$NetBSD: distinfo,v 1.6 2002/03/10 20:43:46 tron Exp $ SHA1 (kdepim-2.2.2.tar.bz2) = b33bd17cfabda2d447932a28084241006cb2edd5 Size (kdepim-2.2.2.tar.bz2) = 2428768 bytes +SHA1 (patch-aa) = 73ec76d8150c8a5a633c79abe56ff6dde4ec85af SHA1 (patch-ab) = 0accad8af75e380feb9b0d059c3a573663342e35 SHA1 (patch-ac) = 9e9786876303c045dfac3b2cf7b806392b8e5163 diff --git a/misc/kdepim2/patches/patch-aa b/misc/kdepim2/patches/patch-aa new file mode 100644 index 00000000000..aed012279f2 --- /dev/null +++ b/misc/kdepim2/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.4 2002/03/10 20:43:47 tron Exp $ + +--- kpilot/conduits/null/Makefile.in.orig Sat Nov 10 09:21:48 2001 ++++ kpilot/conduits/null/Makefile.in Sun Mar 10 21:13:39 2002 +@@ -240,7 +240,7 @@ + + # the libraries to link against. Be aware of the order. First the libraries, + # that depend on the following ones. +-null_conduit_LDADD = -lconduit -lpilotdb $(LIB_KDEUI) $(LIB_KFILE) $(LIB_KDECORE) @LIBSOCKET@ -lpisock -lconduit ++null_conduit_LDADD = -lconduit $(LIB_KDEUI) $(LIB_KFILE) $(LIB_KDECORE) @LIBSOCKET@ -lpisock -lconduit -lpilotdb + + + # this option you can leave out. Just, if you use "make dist", you need it |