Commit graph

24 commits

Author SHA1 Message Date
Ade Lovett
4a8684e352 Sync to new bsd.autotools.mk 2010-12-04 07:34:27 +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
Yi-Jheng Lin
d881f6af28 - Change to my mail address at FreeBSD.org
Approved by:	lwhsu (mentor)
2009-07-29 12:59:14 +00:00
Dmitry Marakasov
4e0aa0ed99 - Update to 1.1.0
- Take maintainership

PR:		130004
Submitted by:	Yi-Jheng Lin <yzlin at cs dot nctu dot edu dot tw>
2008-12-30 02:27:52 +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
Kris Kennaway
ae994c8ea8 Use libtool port instead of included version to avoid objformat a.out botch 2007-02-01 02:42:05 +00:00
Cheng-Lung Sung
c54010f434 - s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include security/ sysutils/ textproc/ maintained by ports@

PR:		ports/101916
Submitted by:	Gea-Suan Lin <gslin_AT_gslin dot org>
2006-08-15 01:04:55 +00:00
Edwin Groothuis
1adfa4acd3 Remove USE_REINPLACE from categories starting with T 2006-05-13 04:24:52 +00:00
Ade Lovett
8503536d38 Conversion to a single libtool environment.
Approved by:	portmgr (kris)
2006-02-23 10:40:44 +00:00
Pav Lucistnik
c937229ea3 - Add SHA256 2005-11-25 18:40:57 +00:00
Marcus Alves Grando
5f2eb1242c Update to 1.0.0
PR:		88565
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-11-07 00:14:09 +00:00
Pav Lucistnik
236547d825 - Update to 0.9.3
PR:		ports/85537
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-08-31 22:44:34 +00:00
Sergey Skvortsov
7e03774858 Install documentation, unless NOPORTDOCS is defined. 2005-05-29 14:25:51 +00:00
Jean-Yves Lefort
e6ff23fafc Update to 0.9.2
PR:		ports/80546
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-05-03 10:38:55 +00:00
David E. O'Brien
c3d8037aeb At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
2005-04-12 03:26:56 +00:00
David E. O'Brien
f2fc2d60ae Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
2005-04-11 08:04:41 +00:00
Kris Kennaway
2a3e01ed67 BROKEN on !i386 and !sparc64: Does not compile 2004-12-04 02:04:25 +00:00
Kirill Ponomarev
6f83c42353 Update to version 0.8.3
PR:		ports/74084
Submitted by:	Ports Fury
2004-11-18 20:43:57 +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
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
Kirill Ponomarev
31c3b37ad4 - Utilize USE_GNOME/USE_LIBTOOL/PLIST_SUB
- Remove post-patch target

PR:		ports/63596
Submitted by:	Ports Fury
2004-03-01 16:13:51 +00:00
Kirill Ponomarev
583635cfc8 - Update to version 0.7.4 2004-03-01 10:46:02 +00:00
Kris Kennaway
36769748b6 BROKEN: Checksum mismatch 2004-02-21 20:07:54 +00:00
Ying-Chieh Liao
e7d05a7642 add libparsifal 0.7.3
Lightweight XML Parser
2004-01-06 06:46:09 +00:00