FreshPorts -- The Place For Ports notbug Sun, 27 May 2012 8:54 PM BST
Port details
libgcrypt 1.5.0 security on this many watch lists=256 search for ports that depend on this port
General purpose crypto library based on code used in GnuPG
Maintained by: umq@ueo.co.jp search for ports maintained by this maintainer
Port Added: 14 Oct 2002 12:39:38
License: GPLv2 LGPL21


Libgcrypt is a general purpose crypto library based on the code used in GnuPG.
 
Author:	wk@g10code.com
WWW: http://www.gnupg.org/
CVSWeb : Sources : Main Web Site : Distfiles Availability : PortsMon
NOTE: FreshPorts displays only required dependencies information. Optional dependencies are not covered.
Required To Build: security/libgpg-error, devel/libtool
Required To Run: security/libgpg-error

Required by:
for Build

for Libraries

for Run

To install the port: cd /usr/ports/security/libgcrypt/ && make install clean
To add the package: pkg_add -r libgcrypt


Configuration Options
     No options to configure

Master Sites:
http://gnupg.org.favoritelinks.net/libgcrypt/
http://mirror.tje.me.uk/pub/mirrors/ftp.gnupg.org/libgcrypt/
http://dotsrc.org/libgcrypt/
ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/libgcrypt/
ftp://ftp.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/libgcrypt/
ftp://ftp.iasi.roedu.net/pub/mirrors/ftp.gnupg.org/libgcrypt/
ftp://mirror.cict.fr/gnupg/libgcrypt/
http://artfiles.org/gnupg.org/libgcrypt/
ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgcrypt/
ftp://ftp.crysys.hu/pub/gnupg/libgcrypt/
ftp://ftp.hi.is/pub/mirrors/gnupg/libgcrypt/
http://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/libgcrypt/
http://gpg-mirror.5coluna.com/ftp/libgcrypt/
ftp://ftp.sunet.se/pub/security/gnupg/libgcrypt/
ftp://mirror.switch.ch/mirror/gnupg/libgcrypt/
http://www.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/libgcrypt/
ftp://ftp.gnupg.org/gcrypt/libgcrypt/
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/
Notes from UPDATING
These upgrade notes are taken from /usr/ports/UPDATING
  • 2011-07-05
    Affects: users of security/libgcrypt and any port that depends on it
    Author: swills@FreeBSD.org
    Reason: 
      The libgcrypt port has been updated to 1.5.0 and all shared libraries'
      versions have been bumped. So you need to rebuild all applications that
      depend on libgcrypt. Do something like:
    
      # portmaster -r libgcrypt
    
      or
    
      # portupgrade -rf libgcrypt
    
    

  • 2010-07-27
    Affects: users of security/libgcrypt
    Author: wxs@FreeBSD.org
    Reason: 
      libgcrypt has been upgraded to 1.4.6 which has a shared library version
      bump.  You need to reinstall all ports that depend on it.  Use something
      like this:
    
    	portupgrade -rf libgcrypt
    	portmaster -r libgcrypt
    
    

  • 2009-01-07
    Affects: users of security/libgcrypt
    Author: rafan@FreeBSD.org
    Reason: 
      libgcrypt has been upgraded to 1.4.3 which has a shared library version
      bump.  You need to reinstall all ports that depend on it.  Use something
      like this:
    
    	portupgrade -rf libgcrypt
    	portmaster -r libgcrypt
    
    

Number of commits found: 57

Commit History - (may be incomplete: see CVSWeb link above for full details)
DateByDescription
05 Nov 2011 17:26:19
Original commit files touched by this commit  1.5.0
miwi search for other commits by this committer
- Add a workaround to fix build on FreeBSD 10.0 i386
17 Sep 2011 21:56:22
Original commit files touched by this commit  1.5.0
pawel search for other commits by this committer
Require ligpg-error>=1.8 to build succesfully

PR:             ports/159873
Submitted by:   Michael Scheidell <scheidell@secnap.net>
Approved by:    maintainer, miwi, wen (mentors implicit)
26 Jul 2011 06:54:46
Original commit files touched by this commit  1.5.0
dim search for other commits by this committer
In the AES-NI inline assembly, change instances of 'cmpq' to 'cmpl'.  I
had erroneously assumed this would only be compiled on amd64, but even
then a 64 bit compare is wrong.  The variables referenced in the inline
assembly are all plain int, so 32 bit.

PR:     ports/159147
Pointy hat to:  dim
Requested by:   Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
21 Jul 2011 20:18:45
Original commit files touched by this commit  1.5.0
dim search for other commits by this committer
Building security/libgcrypt 1.5.0 with clang results in errors similar
to the following:

rijndael.c:846:46: error: ambiguous instructions require an explicit suffix
(could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq')
"movdqa 0xa0(%%esi), %%xmm1\n\t"
^
<inline asm>:24:2: note: instantiated into assembly here
cmp $10, -80(%ebp)
^

This is because the 'cmp' instruction lacks a type suffix, and is thus
ambiguous.  Fix this by changing these to 'cmpq'.

PR:     ports/158994
Approved by:    Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
03 Jul 2011 11:39:40
Original commit files touched by this commit  1.5.0
swills search for other commits by this committer
- Update to 1.5.0

PR:             ports/158574
Submitted by:   Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
04 Dec 2010 07:34:27
Original commit files touched by this commit  1.4.6
ade search for other commits by this committer
Sync to new bsd.autotools.mk
02 Nov 2010 12:18:54
Original commit files touched by this commit  1.4.6
kwm search for other commits by this committer
Fix linking with clang, and give longlong.h a simular treatment like was
done in 9-current so clang can build it on i386.

Update LICENSE block, and remove md5 sum.

PR:             ports/151349
Submitted by:   myself
Approved by:    Yamaguchi Hirohisa <umq@ueo.co.jp> (maintainer)
27 Jul 2010 01:24:39
Original commit files touched by this commit  1.4.6
wxs search for other commits by this committer
Update to 1.4.6.

PR:             ports/148755
Submitted by:   Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
27 Jun 2010 12:57:34
Original commit files touched by this commit  1.4.5_1
stefan search for other commits by this committer
Bump PORTREVISION for latest gettext update. (I'm not sure anyone still needs
it, but it doesn't really hurt, either.)

PR:             147295
Submitted by:   Grzegorz Blach <magik@roorback.net>
Approved by:    maintainer timeout (>3 weeks)
Feature safe:   yes
13 Mar 2010 19:34:23
Original commit files touched by this commit  1.4.5
niels search for other commits by this committer
Upgrade to version 1.4.5

PR:     ports/144312
Submitted by:   Sunpoet Po-Chuan Hsieh <sunpoet at sunpoet.net>
Reviewed by:    Hirohisa Yamaguchi (maintainer)
Approved by:    itetcu (mentor)
02 Aug 2009 19:36:34
Original commit files touched by this commit  1.4.4
mezz search for other commits by this committer
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:      marcus and kwm
Pointyhat-exp:  a few times by pav
Tested by:      pgollucci, "Romain Tartière" <romain@blogreen.org>, and
                a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:    marcus
Approved by:    portmgr
23 Jan 2009 15:52:58
Original commit files touched by this commit  1.4.4
amdmi3 search for other commits by this committer
- Update to 1.4.4

PR:             130914
Submitted by:   Hirohisa Yamaguchi <umq at ueo dot co dot jp> (maintainer)
06 Jan 2009 12:59:57
Original commit files touched by this commit  1.4.3
rafan search for other commits by this committer
- Update to 1.4.3
- Pass maintainership to submitter per PR 127224

PR:             ports/127478
Submitted by:   Hirohisa Yamaguchi <umq at ueo.co.jp>
Approved by:    arved (maintainer)
21 Aug 2008 06:18:49
Original commit files touched by this commit  1.4.1_1
rafan search for other commits by this committer
Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
(Only the first 15 lines of the commit message are shown above View all of this commit message)
06 Jun 2008 14:01:07
Original commit files touched by this commit  1.4.1_1
edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
03 May 2008 19:14:02
Original commit files touched by this commit  1.4.1
arved search for other commits by this committer
Update to 1.4.1

PR:             123099
Submitted by:   Hirohisa Yamaguchi
29 Feb 2008 09:32:39
Original commit files touched by this commit  1.4.0
arved search for other commits by this committer
Disable padlock-support on 6.x

PR:             121207
Submitted by:   ale, Mark Andrews
28 Feb 2008 21:44:49
Original commit files touched by this commit  1.4.0
arved search for other commits by this committer
Update to 1.4.0

PR:             118541
Submitted by:   Hirohisa Yamaguchi
24 Sep 2007 00:35:45
Original commit files touched by this commit  1.2.4_1
edwin search for other commits by this committer
security/libgcrypt portlint fixes

        1. remove quotes from COMMENT
        2. INSTALLS_SHLIB -> USE_LDCONFIG

PR:             ports/115286
Submitted by:   David Yeske <dyeske@gmail.com>
Approved by:    maintainer timeout
23 Jul 2007 09:36:52
Original commit files touched by this commit  1.2.4_1
rafan search for other commits by this committer
- Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
  supports them.  This is determined by running ``configure --help'' in
  do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
  which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
  Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
  PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
  subdirectory detection.

PR:             ports/111470
Approved by:    portmgr
Discussed with: stas (Mk/*), gerald (info related stuffs)
Tested by:      pointyhat exp run
08 Mar 2007 14:12:08
Original commit files touched by this commit  1.2.4_1
jylefort search for other commits by this committer
Track libgpg-error shlib version change.
02 Feb 2007 14:25:54
Original commit files touched by this commit  1.2.4
arved search for other commits by this committer
Update to 1.2.4
28 Jan 2007 09:07:47
Original commit files touched by this commit  1.2.3_1
kris search for other commits by this committer
Use libtool port instead of included one to avoid objformat a.out botch
22 Sep 2006 07:10:31
Original commit files touched by this commit  1.2.3_1
sergei search for other commits by this committer
- Chase libgpg-error version bump [1]
- Add explicit version to libgpg-error dependency where missing [2]
- Bump PORTREVISION [1]

Approved by:    maintainers (arved, lofi, novel,
                ports at mcdermottroe dot com) [1]
Suggested by:   novel, lofi [2]
31 Aug 2006 21:20:52
Original commit files touched by this commit  1.2.3
arved search for other commits by this committer
Update to 1.2.3 (Minor bugfix release)
13 May 2006 04:15:53
Original commit files touched by this commit  1.2.2_1
edwin search for other commits by this committer
Remove USE_REINPLACE from all categories starting with S
03 May 2006 12:55:36
Original commit files touched by this commit  1.2.2_1
sergei search for other commits by this committer
- Chase libgpg-error shlib version bump (.1 -> .2)
- Bump PORTREVISION
23 Feb 2006 10:40:45
Original commit files touched by this commit  1.2.2
ade search for other commits by this committer
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
15 Nov 2005 06:52:12
Original commit files touched by this commit  1.2.2
ade search for other commits by this committer
Mass-conversion to the USE_AUTOTOOLS New World Order.  The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
        http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
08 Nov 2005 12:26:38
Original commit files touched by this commit  1.2.2
arved search for other commits by this committer
Add SHA256 checksums for my ports
18 Oct 2005 17:32:59
Original commit files touched by this commit  1.2.2
arved search for other commits by this committer
Update to 1.2.2

Noteworthy changes are:
 * Made the RNG immune against fork without exec.
 * Minor changes to some function declarations.  Buffer arguments are
   now typed as void pointer.  This should not affect any compilation.
 * A bug in the definition of gcry_cipher_register has been fixed.
27 May 2005 13:53:32
Original commit files touched by this commit  1.2.1_1
arved search for other commits by this committer
Fix build on powerpc
22 Apr 2005 08:30:18
Original commit files touched by this commit  1.2.1_1
arved search for other commits by this committer
Bump PORTREVISION for previous change.

Reported by:    pointyhat
20 Apr 2005 13:41:51
Original commit files touched by this commit  1.2.1
arved search for other commits by this committer
Remove USE_PERL

PR:             80046
Submitted by:   leeym
11 Jan 2005 14:53:12
Original commit files touched by this commit  1.2.1
arved search for other commits by this committer
Update libgcrypt to 1.2.1. Changes:
        * made the code try to lock secure memory pool not only when running as
          root,
        * fixed type usage in Serpent,
        * made the code mix the PID into the entropy pool for better protection
          after a fork,
        * fixed memory leak in RSA.
        * fixed alignment problems in Rijndael,
        * fixed memory leak in gcry_pk_sign(),
        * fixed broken pointer access in gcry_ac_open(),
        * updated the documentation,
        * fixed several other bugs.
Chase Shared library version and bump PORTREVISION of affected ports.
13 Oct 2004 07:59:41
Original commit files touched by this commit  1.2.0_1
arved search for other commits by this committer
Use libtool 15
04 Sep 2004 06:28:15
Original commit files touched by this commit  1.2.0_1
arved search for other commits by this committer
 managed to break this just in time for the ports freeze.

Submitted by:   lofi, eik
Approved by:    portmgr (eik)
03 Sep 2004 21:37:40
Original commit files touched by this commit  1.2.0_1
arved search for other commits by this committer
Nuke the gnupg sigchecking code. There are bugs and I don't have the time
to work on this now.

PR:             66417
Submitted by:   Lupe Christoph <lupe@lupe-christoph.de>
09 Jul 2004 17:43:11
Original commit files touched by this commit  1.2.0_1
marcus search for other commits by this committer
Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port.  Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version.  To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER.  Both macros accept the same argument: a libtool version.

For example, to use the ports version of libtool-1.5, add the following to
your Makefile:

USE_LIBTOOL_VER=        15

To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:

USE_INC_LIBTOOL_VER=    15

With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).

PR:             63944
Based on work by:eik and marcus
Approved by:    ade (autotools maintainer)
Tested by:      kris on pointyhat
Bound to be hidden problems:    You bet
12 Jun 2004 14:12:17
Original commit files touched by this commit  1.2.0_1
arved search for other commits by this committer
Add EXTRACT_ONLY

Noticed by:     bsdtar
08 May 2004 10:25:51
Original commit files touched by this commit  1.2.0_1
arved search for other commits by this committer
Fix pkg-plist

Reported by:                            kris, markus
Pointy hat (not 216.136.204.22) to:     arved
04 May 2004 06:21:22
Original commit files touched by this commit  1.2.0
arved search for other commits by this committer
Add dependency on ligpg-error

PR:             66228
Submitted by:   michael johnson
03 May 2004 13:57:46
Original commit files touched by this commit  1.2.0
arved search for other commits by this committer
Update libgcrypt to the new stable version 1.2.0
Retire libgcrypt-devel

Switch back to security/libgcrypt and bump PORTREVISION for
- gnutls
- gnutls-devel
- gsasl
- opencdk
- vpnc

libggz:
- Remove dependency on libgcrypt, because the port does not yet
work with the new libgcrypt

libksba:
(Only the first 15 lines of the commit message are shown above View all of this commit message)
18 Mar 2004 15:17:40
Original commit files touched by this commit  1.1.12
arved search for other commits by this committer
Add SIZE

Submitted by:   trevor
14 Mar 2004 06:17:56
Original commit files touched by this commit  1.1.12
ade search for other commits by this committer
Whoa there, boy, that's a mighty big commit y'all have there...

Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

        USE_LIBTOOL=YES         ->      USE_LIBTOOL_VER=13
        USE_AUTOCONF=YES        ->      USE_AUTOCONF_VER=213
        USE_AUTOMAKE=YES        ->      USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
06 Feb 2004 11:07:25
Original commit files touched by this commit  1.1.12
arved search for other commits by this committer
Attempt to silence "Annoying Reminder Guy II" by adding NO_LATEST_LINK
29 Jan 2004 10:12:56
Original commit files touched by this commit  1.1.12
arved search for other commits by this committer
Add CONFLICTS
16 Jan 2004 21:08:42
Original commit files touched by this commit  1.1.12
arved search for other commits by this committer
Don't create the default keyring, if gnupg is installed.

Requested by:   Randy Bush
04 Aug 2003 17:54:30
Original commit files touched by this commit  1.1.12
arved search for other commits by this committer
Use new INFO macro
18 Jul 2003 13:37:14
Original commit files touched by this commit  1.1.12
arved search for other commits by this committer
Verify gpg signature if possible.
26 Jun 2003 22:58:32
Original commit files touched by this commit  1.1.12
ade search for other commits by this committer
libtool uber-patch

* kill devel/libtool and move to devel/libtool13, upgrading to 1.3.5
* upgrade repo-copied devel/libtool14 to 1.4.3
* break out libltdl into its own separate port
* move to version-numbered binaries/scripts (ie: there is *no* 'libtool'
  any more -- USE_LIBTOOL and USE_LIBTOOL_VER are your friends)

Approved by:    portmgr (kris) - for the bsd.port.mk hooks
Tested by:      bento 4-exp builds (repeatedly)
26 Feb 2003 15:25:19
Original commit files touched by this commit  1.1.12
arved search for other commits by this committer
Update to 1.1.12

PR:             48704
Submitted by:   Sergei Kolobov <sergei@kolobov.com>
22 Feb 2003 14:38:12
Original commit files touched by this commit  1.1.11
arved search for other commits by this committer
de-pkg-comment
15 Feb 2003 10:51:48
Original commit files touched by this commit  1.1.11
arved search for other commits by this committer
Use MASTER_SITE_GNUPG
02 Jan 2003 14:18:00
Original commit files touched by this commit  1.1.11
arved search for other commits by this committer
Update to 1.1.11
07 Nov 2002 11:54:23
Original commit files touched by this commit  1.1.10
edwin search for other commits by this committer
Fix PERL dependencies for these ports (print/cups solves print/cups-base
and french/cups-base)

Noticed on: bento
14 Oct 2002 12:38:48
Original commit files touched by this commit  1.1.10
ijliao search for other commits by this committer
add libgcrypt 1.1.0
General purpose crypto library based on code used in GnuPG

PR:             43894
Submitted by:   Tilman Linneweh <tilman@arved.de>

Number of commits found: 57

Login
User Login
Create account

Servers and bandwidth provided by
New York Internet
SuperNews

Search
Enter Keywords:
 
more...

Latest Vulnerabilities
haproxyMay 24
foswikiMay 21
inspircd*May 21
inspircd12*May 21
sympaMay 21
sympa5May 21
libxml2May 18
pidgin-otrMay 16
sudoMay 16
chromiumMay 15
chromiumMay 15
pivotx*May 14
socatMay 14
libpurpleMay 12
php5May 12

12 vulnerabilities affecting 17 ports have been reported in the past 14 days

* - modified, not new

All vulnerabilities


Ports
Home
Categories
Deleted ports
Sanity Test Failures
Newsfeeds


Statistics
Graphs
NEW Graphs (Javascript)
Traffic

Calculated hourly:
Port count 23676
Broken 193
Deprecated 147
Ignore 737
Forbidden 3
Restricted 328
No CDROM 110
Vulnerable 0
Expired 44
Set to expire 188
Interactive 54
new 24 hours 4
new 48 hours7
new 7 days62
new fortnight184
new month254

This site
What is FreshPorts?
About the Authors
FAQ
How big is it?
The latest upgrade!
Privacy
Forums
Blog
Contact

Servers and bandwidth provided by
New York Internet
SuperNews
Valid HTML, CSS, and RSS.
Copyright © 2000-2012 DVL Software Limited. All rights reserved.
This page created in 0.497 seconds.