The NetBSD Project

CVS log for pkgsrc/security/mcrypt/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / security / mcrypt

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.29 / (download) - annotate - [select for diffs], Fri Mar 20 11:58:17 2020 UTC (4 years ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, HEAD
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.8 (colored)

*: Convert broken sourceforge HOMEPAGEs back to http

Revision 1.28 / (download) - annotate - [select for diffs], Sat Jan 18 23:35:09 2020 UTC (4 years, 2 months ago) by rillig
Branch: MAIN
Changes since 1.27: +2 -2 lines
Diff to previous 1.27 (colored) to selected 1.8 (colored)

all: migrate several HOMEPAGEs to https

pkglint --only "https instead of http" -r -F

With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.

This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.

Revision 1.26.28.1 / (download) - annotate - [select for diffs], Sun Jun 17 11:40:03 2018 UTC (5 years, 9 months ago) by spz
Branch: pkgsrc-2018Q1
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored) next main 1.27 (colored) to selected 1.8 (colored)

Pullup ticket #5765 - requested by bsiegert
security/mcrypt: security patches

Revisions pulled up:
- security/mcrypt/Makefile                                      1.27
- security/mcrypt/distinfo                                      1.9
- security/mcrypt/patches/patch-doc_mcrypt.1                    1.1
- security/mcrypt/patches/patch-src_errors.c                    1.1
- security/mcrypt/patches/patch-src_extra.c                     1.1
- security/mcrypt/patches/patch-src_gaaout.c                    1.1
- security/mcrypt/patches/patch-src_mcrypt.c                    1.1
- security/mcrypt/patches/patch-src_mcrypt.gaa                  1.1
- security/mcrypt/patches/patch-src_mcrypt__int.h               1.1
- security/mcrypt/patches/patch-src_rfc2440.c                   1.1

-------------------------------------------------------------------
   Module Name:    pkgsrc
   Committed By:   ginsbach
   Date:           Wed May 30 14:58:03 UTC 2018

   Modified Files:
           pkgsrc/security/mcrypt: Makefile distinfo
   Added Files:
           pkgsrc/security/mcrypt/patches: patch-doc_mcrypt.1 patch-src_errors.c
               patch-src_extra.c patch-src_gaaout.c patch-src_mcrypt.c
               patch-src_mcrypt.gaa patch-src_mcrypt__int.h patch-src_rfc2440.c

   Log Message:
   Add various patches from (Brew, Debian, Red Hat, SUSE)

   Upstream for mcrypt is effectively dead so incorporate patches from
   other OSS packaging systems.  These patches address the following:

   * CVE-2012-4409 (fix)
   * CVE-2012-4527 (fix)
   * Spelling and grammar fixes for man page
   * Fix potential format-string attacks (no vulnerability Id)
   * Fix potential buffer overflows (no vulnerability Id)
   * Make native format default as in Debian, Red Hat, and SUSE since
     openpgp format handling is seriously broken.
   * Fix ARM build [unclear if this is necessary for non-Linux systems]
   * Correct include file for OSX


   To generate a diff of this commit:
   cvs rdiff -u -r1.26 -r1.27 pkgsrc/security/mcrypt/Makefile
   cvs rdiff -u -r1.8 -r1.9 pkgsrc/security/mcrypt/distinfo
   cvs rdiff -u -r0 -r1.1 pkgsrc/security/mcrypt/patches/patch-doc_mcrypt.1 \
       pkgsrc/security/mcrypt/patches/patch-src_errors.c \
       pkgsrc/security/mcrypt/patches/patch-src_extra.c \
       pkgsrc/security/mcrypt/patches/patch-src_gaaout.c \
       pkgsrc/security/mcrypt/patches/patch-src_mcrypt.c \
       pkgsrc/security/mcrypt/patches/patch-src_mcrypt.gaa \
       pkgsrc/security/mcrypt/patches/patch-src_mcrypt__int.h \
       pkgsrc/security/mcrypt/patches/patch-src_rfc2440.c

Revision 1.27 / (download) - annotate - [select for diffs], Wed May 30 14:58:03 2018 UTC (5 years, 10 months ago) by ginsbach
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored) to selected 1.8 (colored)

Add various patches from (Brew, Debian, Red Hat, SUSE)

Upstream for mcrypt is effectively dead so incorporate patches from
other OSS packaging systems.  These patches address the following:

* CVE-2012-4409 (fix)
* CVE-2012-4527 (fix)
* Spelling and grammar fixes for man page
* Fix potential format-string attacks (no vulnerability Id)
* Fix potential buffer overflows (no vulnerability Id)
* Make native format default as in Debian, Red Hat, and SUSE since
  openpgp format handling is seriously broken.
* Fix ARM build [unclear if this is necessary for non-Linux systems]
* Correct include file for OSX

Revision 1.26 / (download) - annotate - [select for diffs], Thu Mar 5 22:47:54 2015 UTC (9 years ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2018Q1-base, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1
Branch point for: pkgsrc-2018Q1
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored) to selected 1.8 (colored)

bump rev for symbol rename in security/mhash

Revision 1.25 / (download) - annotate - [select for diffs], Tue Oct 23 18:16:36 2012 UTC (11 years, 5 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2, pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4
Changes since 1.24: +1 -3 lines
Diff to previous 1.24 (colored) to selected 1.8 (colored)

Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Revision 1.24 / (download) - annotate - [select for diffs], Sat Nov 26 04:40:15 2011 UTC (12 years, 4 months ago) by sbd
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4
Changes since 1.23: +3 -2 lines
Diff to previous 1.23 (colored) to selected 1.8 (colored)

Add missing devel/zlib buildlink.

Bump PKGREVISION

Revision 1.23 / (download) - annotate - [select for diffs], Fri Apr 22 13:44:36 2011 UTC (12 years, 11 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2
Changes since 1.22: +2 -1 lines
Diff to previous 1.22 (colored) to selected 1.8 (colored)

recursive bump from gettext-lib shlib bump.

Revision 1.22 / (download) - annotate - [select for diffs], Wed Jan 27 21:38:37 2010 UTC (14 years, 2 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1
Changes since 1.21: +3 -1 lines
Diff to previous 1.21 (colored) to selected 1.8 (colored)

DESTDIR support

Revision 1.21 / (download) - annotate - [select for diffs], Mon Dec 15 20:59:28 2008 UTC (15 years, 3 months ago) by smb
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4
Changes since 1.20: +2 -3 lines
Diff to previous 1.20 (colored) to selected 1.8 (colored)

Update to 2.6.8.  Apparently fixed some compilation issues (presumably
due to GCC 4), though those aren't mentioned in the upstream change log.

Other changes:

2007-06-09  gettextize  <bug-gnu-gettext@gnu.org>

        * m4/gettext.m4: New file, from gettext-0.16.1.
        * m4/iconv.m4: New file, from gettext-0.16.1.
        * m4/lib-ld.m4: New file, from gettext-0.16.1.
        * m4/lib-link.m4: New file, from gettext-0.16.1.
        * m4/lib-prefix.m4: New file, from gettext-0.16.1.
        * m4/nls.m4: New file, from gettext-0.16.1.
        * m4/po.m4: New file, from gettext-0.16.1.
        * m4/progtest.m4: New file, from gettext-0.16.1.

2003-03-08 17:38  nmav

        * Makefile.am:

        Honor DESTDIR variable. Patch by Andrew W. Nosenko  <awn@bcs.zp.ua>

2003-03-08 17:29  nmav

        * src/mcrypt.c, NEWS:

        Made the algorithm and mode command line input case insensitive.

2003-03-08 17:08  nmav

        * doc/mcrypt.1:

        some corrections in the manpage by  Michael Mason
        <mgm@eskimoman.net>

Revision 1.20 / (download) - annotate - [select for diffs], Mon Apr 30 19:28:34 2007 UTC (16 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, cwrapper, cube-native-xorg-base, cube-native-xorg
Changes since 1.19: +9 -9 lines
Diff to previous 1.19 (colored) to selected 1.8 (colored)

Changes 2.6.5:
* Added all of the patches on Sourceforge, plus those included by Red Hat's Fedora Extras

Revision 1.19 / (download) - annotate - [select for diffs], Mon Apr 30 12:52:10 2007 UTC (16 years, 11 months ago) by tron
Branch: MAIN
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored) to selected 1.8 (colored)

Update home-page URL.

Revision 1.18 / (download) - annotate - [select for diffs], Sat Mar 4 21:30:35 2006 UTC (18 years ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2, pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored) to selected 1.8 (colored)

Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.

Revision 1.17 / (download) - annotate - [select for diffs], Sun Feb 5 23:10:45 2006 UTC (18 years, 1 month ago) by joerg
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored) to selected 1.8 (colored)

Recursive revision bump / recommended bump for gettext ABI change.

Revision 1.16 / (download) - annotate - [select for diffs], Mon Apr 11 21:47:13 2005 UTC (18 years, 11 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4, pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.15: +1 -2 lines
Diff to previous 1.15 (colored) to selected 1.8 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.15 / (download) - annotate - [select for diffs], Sun Oct 3 00:18:10 2004 UTC (19 years, 5 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored) to selected 1.8 (colored)

Libtool fix for PR pkg/26633, and other issues.  Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.

Revision 1.14 / (download) - annotate - [select for diffs], Sun Apr 25 03:32:00 2004 UTC (19 years, 11 months ago) by snj
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3, pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.13: +5 -5 lines
Diff to previous 1.13 (colored) to selected 1.8 (colored)

Convert to buildlink3.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Feb 14 17:21:52 2004 UTC (20 years, 1 month ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.12: +1 -2 lines
Diff to previous 1.12 (colored) to selected 1.8 (colored)

LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globs
relative to ${WRKSRC}.  Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.

Revision 1.12 / (download) - annotate - [select for diffs], Mon Jul 21 17:20:11 2003 UTC (20 years, 8 months ago) by martti
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored) to selected 1.8 (colored)

COMMENT should start with a capital letter.

Revision 1.11 / (download) - annotate - [select for diffs], Thu Jul 17 22:52:59 2003 UTC (20 years, 8 months ago) by grant
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.8 (colored)

s/netbsd.org/NetBSD.org/

Revision 1.10 / (download) - annotate - [select for diffs], Sun Jul 13 13:53:11 2003 UTC (20 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.9: +2 -1 lines
Diff to previous 1.9 (colored) to selected 1.8 (colored)

PKGREVISION bump for libiconv update.

Revision 1.9 / (download) - annotate - [select for diffs], Mon Jun 2 01:17:15 2003 UTC (20 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.

Revision 1.8 / (download) - annotate - [selected], Wed Mar 5 08:44:56 2003 UTC (21 years ago) by wiz
Branch: MAIN
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

Update to 2.6.4.
21Feb2003: Version 2.6.4
	- Updated Spanish-Argentina translation by Ariel
	Fermani.
	- Some fixes for compiling under win32.
        - Some fixes to allow compiling gaaout.c with external
          CFLAGS and CPPFLAGS.

04Oct2002: Version 2.6.3
	- Added support for 64 bit file offsets. Based on patch by
          Keven Belanger.

23Jun2002: Version 2.6.2
	- Corrections in localization
	- Added Spanish-Argentina translation. Translated by Ariel
	Fermani.

15Jun2002: Version 2.6.1
	- Better error checking
	- Added rndunix random gatherer from gnupg. It is
	  a gatherer for random bytes, written by Peter Gutmann.
	- Added some kind of random byte generator for Win32
	  systems.
	- Corrected bug in configuration file parsing.
	- Corrected bug in bare mode which put an IV in the
	  encrypted file even if the mode did not support IV.

29May2002: Version 2.6.0
	- Added OpenPGP support (added by Timo Schulz)
	- Removed all of file locking code.
	- Several improvements and corrections on the old
          codebase (still a mess).

11Mar2002: Version 2.5.13
	- Corrected stream modes in block algorithms

29Jan2002: Version 2.5.12
	- Added some missing files

26Jan2002: Version 2.5.11
	- SHA1 is the default digest used

01Dec2001:
	- Added --time option

Revision 1.7 / (download) - annotate - [select for diffs], Fri Jan 10 07:49:07 2003 UTC (21 years, 2 months ago) by cjep
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.6: +2 -1 lines
Diff to previous 1.6 (colored) to selected 1.8 (colored)

USE_PKGLOCALEDIR=yes

Revision 1.6 / (download) - annotate - [select for diffs], Sun Aug 25 21:50:39 2002 UTC (21 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.5: +8 -6 lines
Diff to previous 1.5 (colored) to selected 1.8 (colored)

Merge packages from the buildlink2 branch back into the main trunk that
have been converted to USE_BUILDLINK2.

Revision 1.5.2.1 / (download) - annotate - [select for diffs], Mon Jul 1 17:45:09 2002 UTC (21 years, 9 months ago) by jlam
Branch: buildlink2
Changes since 1.5: +8 -6 lines
Diff to previous 1.5 (colored) next main 1.6 (colored) to selected 1.8 (colored)

Convert from using buildlink1 to using the new buildlink2 framework.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Oct 9 19:40:54 2001 UTC (22 years, 5 months ago) by jlam
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, netbsd-1-5-PATCH003, buildlink2-base
Branch point for: buildlink2
Changes since 1.4: +11 -11 lines
Diff to previous 1.4 (colored) to selected 1.8 (colored)

Update mcrypt to 2.5.10.  Changes from version 2.5.5 include:

	- Bug fixes
	- Updated magic file (for file(1) program)
	- Updated locales

Revision 1.4 / (download) - annotate - [select for diffs], Thu Sep 27 23:18:39 2001 UTC (22 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.3: +3 -3 lines
Diff to previous 1.3 (colored) to selected 1.8 (colored)

Mechanical changes to 375 files to change dependency patterns of the form
foo-* to foo-[0-9]*.  This is to cause the dependencies to match only the
packages whose base package name is "foo", and not those named "foo-bar".
A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net.  Also
change dependency examples in Packages.txt to reflect this.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Jun 11 06:34:48 2001 UTC (22 years, 9 months ago) by jlam
Branch: MAIN
Changes since 1.2: +1 -2 lines
Diff to previous 1.2 (colored) to selected 1.8 (colored)

CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, so
adapt by moving CPPFLAGS settings to top-level, and removing explicit
inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.

Revision 1.2 / (download) - annotate - [select for diffs], Sat Feb 17 17:49:52 2001 UTC (23 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH001
Changes since 1.1: +2 -1 lines
Diff to previous 1.1 (colored) to selected 1.8 (colored)

Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Nov 10 11:34:44 2000 UTC (23 years, 4 months ago) by itojun
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.8 (colored)

mcrypt, a replacement for crypt(1) with bunch of algorithms

Revision 1.1 / (download) - annotate - [select for diffs], Fri Nov 10 11:34:44 2000 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
Diff to selected 1.8 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>