diff options
author | hubertf <hubertf@pkgsrc.org> | 2002-01-26 18:30:08 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2002-01-26 18:30:08 +0000 |
commit | 613737d6e168220e3e8d762d16095683800e97e1 (patch) | |
tree | ed31f026ccb463d34f825d730e98374b356bcba2 /chat | |
parent | 0414a1ce6c69f8f760f811ce3460df571f46a14e (diff) | |
download | pkgsrc-613737d6e168220e3e8d762d16095683800e97e1.tar.gz |
Update silc-client to 0.7.3. Changes:
changes in the package:
- patch-ab is no longer needed, integrated into distribution. patch-ac has
been moved in it's place
- minor change in Makefile, long transscription of ${PKG_SYSCONFDIR} was
changed into one variable
- patch-aa was modified to follow change in Makefile.in
changes in the silc-client:
0.7.3: This version fixes the NICK command to always give the unformatted
nickname, instead of possibility of formatted nickname, fixes the
GETKEY command to save the public key to correct filename, and to
first resolve the client information and server information only if
client was not found. The public keys are now (when connecting to
server for first time) saved with using the IP address of the server,
instead of the hostname of the server. The old hostname format is
used as a fall back method if the IP address based filename could
not be found.
Submitted by Lubomir Sedlacik <salo@Xtrmntr.org> in PR 15380
Diffstat (limited to 'chat')
-rw-r--r-- | chat/silc-client/Makefile | 6 | ||||
-rw-r--r-- | chat/silc-client/distinfo | 11 | ||||
-rw-r--r-- | chat/silc-client/patches/patch-aa | 8 | ||||
-rw-r--r-- | chat/silc-client/patches/patch-ab | 23 | ||||
-rw-r--r-- | chat/silc-client/patches/patch-ac | 13 |
5 files changed, 24 insertions, 37 deletions
diff --git a/chat/silc-client/Makefile b/chat/silc-client/Makefile index 54eb33f1ca7..a1276289e6d 100644 --- a/chat/silc-client/Makefile +++ b/chat/silc-client/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2002/01/14 21:15:59 hubertf Exp $ +# $NetBSD: Makefile,v 1.6 2002/01/26 18:30:08 hubertf Exp $ -DISTNAME= silc-client-0.7.2 +DISTNAME= silc-client-0.7.3 CATEGORIES= chat MASTER_SITES= http://silcnet.org/download/client/sources/ \ ftp://ftp.silcnet.org/silc/client/sources/ \ @@ -28,7 +28,7 @@ PKG_SYSCONFSUBDIR?= silc CONFIGURE_ARGS+= --with-helpdir=${PREFIX}/share/silc/help CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/silc -CONFIGURE_ARGS+= --with-etcdir=${PKG_SYSCONFBASE}/${PKG_SYSCONFSUBDIR} +CONFIGURE_ARGS+= --with-etcdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --with-ncurses=${BUILDLINK_DIR} .if (${MACHINE_ARCH} != "i386") diff --git a/chat/silc-client/distinfo b/chat/silc-client/distinfo index cbd0ded982f..09b45579884 100644 --- a/chat/silc-client/distinfo +++ b/chat/silc-client/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.4 2002/01/14 21:16:00 hubertf Exp $ +$NetBSD: distinfo,v 1.5 2002/01/26 18:30:08 hubertf Exp $ -SHA1 (silc-client-0.7.2.tar.bz2) = eef34b55a76a7db243a6cda3c00b895b9b5616c4 -Size (silc-client-0.7.2.tar.bz2) = 1197988 bytes -SHA1 (patch-aa) = df7c8c0a4faffa65586191909dcfb5643ed865df -SHA1 (patch-ab) = 27a0fb7c760c3fff2327af4b3d43060d60542749 -SHA1 (patch-ac) = f54df58f1afb5deb4abc325632e0b9d081cea519 +SHA1 (silc-client-0.7.3.tar.bz2) = ec23912d5f057d4a103412a7d002ede6e2caa76e +Size (silc-client-0.7.3.tar.bz2) = 1207594 bytes +SHA1 (patch-aa) = 733ddfe7af2f027c32632253fbaee33457a979e9 +SHA1 (patch-ab) = f54df58f1afb5deb4abc325632e0b9d081cea519 diff --git a/chat/silc-client/patches/patch-aa b/chat/silc-client/patches/patch-aa index d084b49b997..29d532bbc99 100644 --- a/chat/silc-client/patches/patch-aa +++ b/chat/silc-client/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.3 2002/01/14 21:16:01 hubertf Exp $ +$NetBSD: patch-aa,v 1.4 2002/01/26 18:30:09 hubertf Exp $ ---- Makefile.in.orig Sat Jan 5 13:47:56 2002 -+++ Makefile.in Sat Jan 5 14:16:11 2002 +--- Makefile.in.orig Tue Jan 22 20:30:22 2002 ++++ Makefile.in Wed Jan 23 16:29:41 2002 @@ -529,24 +529,13 @@ install-dirs: @@ -17,7 +17,7 @@ $NetBSD: patch-aa,v 1.3 2002/01/14 21:16:01 hubertf Exp $ - fi - -sim-install: -- -cp -fRL $(srcdir)/lib/silcsim/*.so $(modulesdir)/ +- $(INSTALL_DATA) $(srcdir)/lib/silcsim/*.so $(modulesdir)/ doc-install: $(INSTALL_DATA) $(srcdir)/doc/CodingStyle $(docdir)/ diff --git a/chat/silc-client/patches/patch-ab b/chat/silc-client/patches/patch-ab index cdd40ce5c22..c11cc50e1ac 100644 --- a/chat/silc-client/patches/patch-ab +++ b/chat/silc-client/patches/patch-ab @@ -1,12 +1,13 @@ -$NetBSD: patch-ab,v 1.2 2001/12/21 20:48:30 hubertf Exp $ +$NetBSD: patch-ab,v 1.3 2002/01/26 18:30:09 hubertf Exp $ ---- irssi/config.orig Fri Nov 30 02:18:01 2001 -+++ irssi/config Fri Nov 30 02:18:19 2001 -@@ -57,7 +57,6 @@ - use_msgs_window = "no"; - autocreate_windows = "no"; - autocreate_query_level = "none"; -- use_auto_addr = "no"; - }; - "fe-text" = { topicbar = "no"; mail_counter = "yes"; indent = "8"; }; - }; +--- irssi/src/fe-text/Makefile.in.orig Sat Jan 5 13:48:19 2002 ++++ irssi/src/fe-text/Makefile.in Sat Jan 5 14:07:17 2002 +@@ -170,8 +170,6 @@ + -DLOCALEDIR=\""$(datadir)/locale"\" + + +-silc_DEPENDENCIES = @COMMON_LIBS@ +- + LIBS = $(SILC_COMMON_LIBS) + silc_LDADD = \ + @COMMON_LIBS@ \ diff --git a/chat/silc-client/patches/patch-ac b/chat/silc-client/patches/patch-ac deleted file mode 100644 index 6199556ff58..00000000000 --- a/chat/silc-client/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.3 2002/01/14 21:16:46 hubertf Exp $ - ---- irssi/src/fe-text/Makefile.in.orig Sat Jan 5 13:48:19 2002 -+++ irssi/src/fe-text/Makefile.in Sat Jan 5 14:07:17 2002 -@@ -170,8 +170,6 @@ - -DLOCALEDIR=\""$(datadir)/locale"\" - - --silc_DEPENDENCIES = @COMMON_LIBS@ -- - LIBS = $(SILC_COMMON_LIBS) - silc_LDADD = \ - @COMMON_LIBS@ \ |