pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/antonym antonym 1.9. From the DESCR:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ad07ad9730af
branches:  trunk
changeset: 474809:ad07ad9730af
user:      tv <tv%pkgsrc.org@localhost>
date:      Wed May 05 16:34:34 2004 +0000

description:
antonym 1.9.  From the DESCR:

Many people use anonymous pseudonyms to send and receive mail that cannot
be traced to them. This program is for people who know what the pseudonyms
(shortened to 'nyms' from here on) are, understand how they work, and wish
to make their use a little easier. Antonym supports the following
functions:

    * Generating a create or modify block for a given reply path
    * Decrypting a message sent to a particular nym
    * Generating random passwords or text phrases
    * Encrypting mails to be sent to nymservers
    * Encrypting mails to be sent to anonymous remailers
    * Calculating statistics about a given remailer chain

diffstat:

 security/antonym/DESCR            |  12 ++++++++++++
 security/antonym/MESSAGE          |   5 +++++
 security/antonym/Makefile         |  30 ++++++++++++++++++++++++++++++
 security/antonym/PLIST            |   5 +++++
 security/antonym/distinfo         |   6 ++++++
 security/antonym/patches/patch-aa |  20 ++++++++++++++++++++
 security/antonym/patches/patch-ab |  29 +++++++++++++++++++++++++++++
 7 files changed, 107 insertions(+), 0 deletions(-)

diffs (135 lines):

diff -r 2d498738aff9 -r ad07ad9730af security/antonym/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/antonym/DESCR    Wed May 05 16:34:34 2004 +0000
@@ -0,0 +1,12 @@
+Many people use anonymous pseudonyms to send and receive mail that cannot
+be traced to them. This program is for people who know what the pseudonyms
+(shortened to 'nyms' from here on) are, understand how they work, and wish
+to make their use a little easier. Antonym supports the following
+functions:
+
+    * Generating a create or modify block for a given reply path
+    * Decrypting a message sent to a particular nym
+    * Generating random passwords or text phrases
+    * Encrypting mails to be sent to nymservers
+    * Encrypting mails to be sent to anonymous remailers
+    * Calculating statistics about a given remailer chain
diff -r 2d498738aff9 -r ad07ad9730af security/antonym/MESSAGE
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/antonym/MESSAGE  Wed May 05 16:34:34 2004 +0000
@@ -0,0 +1,5 @@
+$NetBSD: MESSAGE,v 1.1.1.1 2004/05/05 16:34:34 tv Exp $
+
+Though antonym supports --ctype=gpg, GnuPG is not properly supported in this
+version of antonym (gpg >= 1.3.4 is required, and the nymserver must support
+OpenPGP).  As a result, for now, the default implementation used is pgp2.
diff -r 2d498738aff9 -r ad07ad9730af security/antonym/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/antonym/Makefile Wed May 05 16:34:34 2004 +0000
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/05/05 16:34:34 tv Exp $
+#
+
+DISTNAME=              antonym-1.9
+CATEGORIES=            security mail
+MASTER_SITES=          http://subwiki.honeypot.net/pub/Computing/AntoNym/
+
+MAINTAINER=            tv%duh.org@localhost
+HOMEPAGE=              http://subwiki.honeypot.net/cgi-bin/view/Computing/AntoNym
+COMMENT=               Anonymous nymserver account maintenance tool
+
+DEPENDS+=              p5-Digest-MD5-[0-9]*:../../security/p5-Digest-MD5
+DEPENDS+=              pgp-2.*:../../security/pgp2
+
+WRKSRC=                        ${WRKDIR}/antonym
+USE_BUILDLINK3=                yes
+USE_PERL5=             yes
+
+REPLACE_PERL=          antonym
+PKG_INSTALLATION_TYPES=        overwrite pkgviews
+
+do-build: # empty
+
+do-install:
+       ${INSTALL_SCRIPT} ${WRKSRC}/antonym ${PREFIX}/bin/
+       ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/antonym
+       ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/examples/antonym/
+       ${INSTALL_DATA} ${WRKSRC}/replyblocks.dat.example ${PREFIX}/share/examples/antonym/dot.antonym
+
+.include "../../mk/bsd.pkg.mk"
diff -r 2d498738aff9 -r ad07ad9730af security/antonym/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/antonym/PLIST    Wed May 05 16:34:34 2004 +0000
@@ -0,0 +1,5 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/05/05 16:34:34 tv Exp $
+bin/antonym
+share/examples/antonym/README
+share/examples/antonym/dot.antonym
+@dirrm share/examples/antonym
diff -r 2d498738aff9 -r ad07ad9730af security/antonym/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/antonym/distinfo Wed May 05 16:34:34 2004 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/05/05 16:34:34 tv Exp $
+
+SHA1 (antonym-1.9.tar.gz) = 0c1fd06f175a3c13900479460824c07a4bbeb480
+Size (antonym-1.9.tar.gz) = 14902 bytes
+SHA1 (patch-aa) = 36c055595784ff8cd6fc600e3ac3ed5ce4f03275
+SHA1 (patch-ab) = 3421c1849a71e6ae5a2d4ee11e94111c39299664
diff -r 2d498738aff9 -r ad07ad9730af security/antonym/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/antonym/patches/patch-aa Wed May 05 16:34:34 2004 +0000
@@ -0,0 +1,20 @@
+$NetBSD: patch-aa,v 1.1.1.1 2004/05/05 16:34:34 tv Exp $
+
+--- antonym.orig       Tue May  4 13:27:11 2004
++++ antonym
+@@ -39,12 +40,12 @@ use IPC::Open2;
+ # Command-line arguments, their types, and their defaults
+ my %opt_def = (
+              'alias=s'         => '',
+-             'config=s'        => 'replyblocks.dat',
++             'config=s'        => "$ENV{'HOME'}/.antonym",
+              'ctype=s'         => 'pgp',
+-             'dict=s'          => '/usr/share/dict/american-english-large',
++             'dict=s'          => '/usr/share/dict/words',
+              'remailers=s'     => "$ENV{'HOME'}/.remailers",
+              'words=i'         => 5,
+-             'rlist=s'         => 'http://mixmaster.shinn.net/stats/rlist',
++             'rlist=s'         => 'http://stats.melontraffickers.com/rlist.txt',
+              'maxrlistage=i'   => 1,
+              'mailinformat=s'  => 'mbox',
+              'mailoutformat=s' => 'mbox',
diff -r 2d498738aff9 -r ad07ad9730af security/antonym/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/antonym/patches/patch-ab Wed May 05 16:34:34 2004 +0000
@@ -0,0 +1,29 @@
+$NetBSD: patch-ab,v 1.1.1.1 2004/05/05 16:34:34 tv Exp $
+
+--- README.orig        Tue Aug  6 12:44:44 2002
++++ README
+@@ -2,18 +2,17 @@ $Id: README,v 1.1 2002/07/25 16:42:06 ki
+ 
+ INSTALLATION
+ 
+-  Copy 'antonym' to a directory in your $PATH.
+-
+   Get a .remailers file if you don't already have one.  An easy way to do
+   this is by asking Antonym to fetch one for you:
+ 
+     antonym update
+ 
+-  Create your configuration file, 'replyblocks.dat'.  See the included
+-  'replyblocks.dat.example' for instructions.  This is probably the hardest
+-  part of using antonym, but it's not really *that* difficult, and you only
+-  have to do it when you're creating a new nym.  Hint: the 'phrase' and
+-  'password' commands can be helpful when writing your new reply block.
++  Create your configuration file, '$HOME/.antonym'.  See the included
++  'dot.antonym' (in PREFIX/share/examples/antonym) for instructions.
++  This is probably the hardest part of using antonym, but it's not really
++  *that* difficult, and you only have to change it again when you're
++  creating a new nym.  Hint: the 'phrase' and 'password' commands can be
++  helpful when writing your new reply block.
+ 
+ 
+ USAGE



Home | Main Index | Thread Index | Old Index