1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
Commit Graph

57 Commits

Author SHA1 Message Date
Martin Wilke
234f9e670b - Add a workaround to fix build on FreeBSD 10.0 i386 2011-11-05 17:26:19 +00:00
Pawel Pekala
90a5f735d8 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)
2011-09-17 21:56:22 +00:00
Dimitry Andric
6547a5ca86 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)
2011-07-26 06:54:46 +00:00
Dimitry Andric
ef5b181f79 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)
2011-07-21 20:18:45 +00:00
Steve Wills
fbb7343c34 - Update to 1.5.0
PR:		ports/158574
Submitted by:	Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
2011-07-03 11:39:40 +00:00
Ade Lovett
4a8684e352 Sync to new bsd.autotools.mk 2010-12-04 07:34:27 +00:00
Koop Mast
5737b9faff 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)
2010-11-02 12:18:54 +00:00
Wesley Shields
5248e90f85 Update to 1.4.6.
PR:		ports/148755
Submitted by:	Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
2010-07-27 01:24:39 +00:00
Stefan Walter
6bb1f6edee 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
2010-06-27 12:57:34 +00:00
Niels Heinen
da9f1f5eb7 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)
2010-03-13 19:34:23 +00:00
Jeremy Messenger
789d75c728 -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
2009-08-02 19:36:34 +00:00
Dmitry Marakasov
a31964a3e3 - Update to 1.4.4
PR:		130914
Submitted by:	Hirohisa Yamaguchi <umq at ueo dot co dot jp> (maintainer)
2009-01-23 15:52:58 +00:00
Rong-En Fan
d4d35efd5f - 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)
2009-01-06 12:59:57 +00:00
Rong-En Fan
741aa71483 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
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
2008-08-21 06:18:49 +00:00
Edwin Groothuis
090059a210 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)
2008-06-06 14:17:21 +00:00
Tilman Keskinoz
389397255f Update to 1.4.1
PR:		123099
Submitted by:	Hirohisa Yamaguchi
2008-05-03 19:14:02 +00:00
Tilman Keskinoz
abbd631376 Disable padlock-support on 6.x
PR:		121207
Submitted by:	ale, Mark Andrews
2008-02-29 09:32:39 +00:00
Tilman Keskinoz
7095043373 Update to 1.4.0
PR:		118541
Submitted by:	Hirohisa Yamaguchi
2008-02-28 21:44:48 +00:00
Edwin Groothuis
bb2e13e258 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
2007-09-24 00:35:45 +00:00
Rong-En Fan
f935a609c5 - 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
2007-07-23 09:36:51 +00:00
Jean-Yves Lefort
4a6abcecf2 Track libgpg-error shlib version change. 2007-03-08 14:12:08 +00:00
Tilman Keskinoz
47f5801b90 Update to 1.2.4 2007-02-02 14:25:54 +00:00
Kris Kennaway
89a0b31acd Use libtool port instead of included one to avoid objformat a.out botch 2007-01-28 09:07:47 +00:00
Sergei Kolobov
b1000fb4e6 - 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]
2006-09-22 07:10:31 +00:00
Tilman Keskinoz
d11c5344d6 Update to 1.2.3 (Minor bugfix release) 2006-08-31 21:20:52 +00:00
Edwin Groothuis
28dd10dcb4 Remove USE_REINPLACE from all categories starting with S 2006-05-13 04:15:53 +00:00
Sergei Kolobov
8620fd9b3b - Chase libgpg-error shlib version bump (.1 -> .2)
- Bump PORTREVISION
2006-05-03 12:55:36 +00:00
Ade Lovett
8503536d38 Conversion to a single libtool environment.
Approved by:	portmgr (kris)
2006-02-23 10:40:44 +00:00
Ade Lovett
54a0b86543 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.
2005-11-15 06:52:12 +00:00
Tilman Keskinoz
4ec9c8318a Add SHA256 checksums for my ports 2005-11-08 12:26:38 +00:00
Tilman Keskinoz
60ed2235aa 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.
2005-10-18 17:32:59 +00:00
Tilman Keskinoz
d947e43976 Fix build on powerpc 2005-05-27 13:53:31 +00:00
Tilman Keskinoz
e645c076c2 Bump PORTREVISION for previous change.
Reported by:	pointyhat
2005-04-22 08:30:18 +00:00
Tilman Keskinoz
895804ef12 Remove USE_PERL
PR:		80046
Submitted by:	leeym
2005-04-20 13:41:51 +00:00
Tilman Keskinoz
8310ee07c9 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.
2005-01-11 14:53:12 +00:00
Tilman Keskinoz
a8f55bd2f9 Use libtool 15 2004-10-13 07:59:41 +00:00
Tilman Keskinoz
cbe931a9c6 managed to break this just in time for the ports freeze.
Submitted by:   lofi, eik
Approved by:    portmgr (eik)
2004-09-04 06:28:15 +00:00
Tilman Keskinoz
b06683882c 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>
2004-09-03 21:37:40 +00:00
Joe Marcus Clarke
9e5632dd66 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
2004-07-09 17:43:11 +00:00
Tilman Keskinoz
deb33b1a27 Add EXTRACT_ONLY
Noticed by:	bsdtar
2004-06-12 14:12:17 +00:00
Tilman Keskinoz
6d475404ca Fix pkg-plist
Reported by:				kris, markus
Pointy hat (not 216.136.204.22) to:	arved
2004-05-08 10:25:51 +00:00
Tilman Keskinoz
e31adbd4d7 Add dependency on ligpg-error
PR:		66228
Submitted by:	michael johnson
2004-05-04 06:21:22 +00:00
Tilman Keskinoz
f75ab7e2f3 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:
- Update to 0.9.5
- Pass maintainership to lofi, who already maintains the other
aegypten ports.

Approved by:	lofi

wmbiff:
Switch to security/libgcrypt but no PORTREVISION bump, because the
dependency is optional and the port does not work with the new
libgcrypt and needs to be updated.

No action, because ports don't work with the new libgcrypt and need
to be updated, maintainers informed:
security/newpg
security/pinentry
security/dirmngr
emulators/fuse
emulators/libspectrum
2004-05-03 13:57:46 +00:00
Tilman Keskinoz
c5066876e0 Add SIZE
Submitted by:	trevor
2004-03-18 15:17:40 +00:00
Ade Lovett
3f651573ad 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.
2004-03-14 06:17:56 +00:00
Tilman Keskinoz
3d135af9f6 Attempt to silence "Annoying Reminder Guy II" by adding NO_LATEST_LINK 2004-02-06 11:07:25 +00:00
Tilman Keskinoz
393ba63d5d Add CONFLICTS 2004-01-29 10:12:56 +00:00
Tilman Keskinoz
51bb88223c Don't create the default keyring, if gnupg is installed.
Requested by:	Randy Bush
2004-01-16 21:08:42 +00:00
Tilman Keskinoz
5db526233f Use new INFO macro 2003-08-04 17:54:30 +00:00
Tilman Keskinoz
b6d7723f1a Verify gpg signature if possible. 2003-07-18 13:37:14 +00:00