1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
Commit Graph

10 Commits

Author SHA1 Message Date
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
Jimmy Olgeni
a249020977 Large round of typo fixes in ports/devel (pkg-descr). 2008-06-01 09:42:37 +00:00
Martin Wilke
399ac7701b - Fix pkg-plist
Reported by:	ionbot
2008-05-22 22:50:32 +00:00
Martin Wilke
ca020ac19d - Update to 2.7.1
PR:		123817
Submitted by:	Kiyoshi Matsui <kmatsui@t3.rim.or.jp> (maintainer)
2008-05-22 00:06:46 +00:00
Rong-En Fan
3c0e6885c5 - Update to 2.7
- Use SOURCEFORGE macro from bsd.sites.mk

PR:		ports/122044
Submitted by:	iyoshi MATSUI <kmatsui at t3.rim.or.jp> (maintainer)
2008-03-31 06:24:40 +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
Martin Wilke
86510c76ae - Fix build on AMD64
Submitted by:   ponityhat via kris
                Kiyoshi Matsui<kmatsui@t3.rim.or.jp> (maintainer)
2007-06-04 06:22:03 +00:00
Martin Wilke
de73616bc1 - Update to 2.6.4
PR:		112831
Submitted by:	Kiyoshi Matsui<kmatsui@t3.rim.or.jp> (maintainer)
2007-05-27 21:52:43 +00:00
Rong-En Fan
5bb48d5de8 - Correct set mandir
PR:		111999
Submitted by:	Kiyoshi Matsui <kmatsui at t3.rim.or.jp> (maintainet)
2007-04-28 10:07:50 +00:00
Martin Wilke
e3f5e0823d C/C++ preprocessor expands macros and processes '#if', '#include' and
some other directives.

MCPP is an alternative C/C++ preprocessor with the highest conformance,
implementated by Kiyoshi Matsui.  MCPP is especially useful for
debugging the source program which use complicated macros and also
useful for checking portability of the source.  It supports multiple
standards: K&R, ISO C90, ISO C99, and ISO C++98.

Though mcpp could be built as a replacement of GCC's resident
proprocessor or as a subroutine called from some other main program,
this package installs only a stand-alone program named 'mcpp' which
behaves independent from GCC.

WWW: http://mcpp.sourceforge.net/

- Kiyoshi Matsui <kmatsui@t3.rim.or.jp>

PR:		ports/111588
Submitted by:	Kiyoshi Matsui <kmatsui at t3.rim.or.jp>
2007-04-15 18:59:37 +00:00