CVS log for ports/devel/automake110/Attic/Makefile
Up to [FreeBSD] / ports / devel / automake110
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.81
Thu Oct 7 16:54:28 2010 UTC (16 months ago) by ade
Branches: MAIN
CVS tags: HEAD
FILE REMOVED
Changes since revision 1.80: +1 -1 lines
Complete de-orbit burn sequence for automake19 and automake110. Special thanks to Travis Thaxton (travis <at> thax.org) for his recent kind hardware donation, without which this particular part of the never-ending autotools work would have taken _considerably_ longer to do.
Revision 1.80: download - view: text, markup, annotated - select for diffs
Wed Sep 15 18:34:06 2010 UTC (16 months, 3 weeks ago) by ade
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +2 -2 lines
Autotools update. Read ports/UPDATING 20100915 for details. Approved by: portmgr (for Mk/bsd.port.mk part) Tested by: Multiple -exp runs
Revision 1.79: download - view: text, markup, annotated - select for diffs
Wed Dec 16 11:21:25 2009 UTC (2 years, 1 month ago) by linimon
Branches: MAIN
CVS tags: RELEASE_8_1_0, RELEASE_7_3_0
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +4 -1 lines
Reassign the autotools-related ports to a new mailing list, autotools@FreeBSD.org. This is for individuals willing to put in the hard work to generate patches and work with portmgr as we put them through -exp runs and work through port breakage that they create. (A huge number of ports depend on these, so -exp runs are required.) Thanks to aDe@ for all the thankless work he's done over the years to tame these beasts. Hat: portmgr
Revision 1.78: download - view: text, markup, annotated - select for diffs
Thu Aug 21 06:16:34 2008 UTC (3 years, 5 months ago) by rafan
Branches: MAIN
CVS tags: RELEASE_8_0_0, RELEASE_7_2_0, RELEASE_7_1_0, RELEASE_6_4_0
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +0 -1 lines
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)
Revision 1.77: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:56:33 2008 UTC (3 years, 5 months ago) by ade
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +1 -1 lines
Conversion from (now defunct) autoconf-2.61 to autoconf-2.62 Tested by: exp build run (erwin)
Revision 1.76: download - view: text, markup, annotated - select for diffs
Fri Jun 6 02:35:58 2008 UTC (3 years, 8 months ago) by ade
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +1 -2 lines
Major autotools-related update: automake 1.10 -> 1.10.1 gettext 0.16.1 -> 0.17 libtool 1.5.24 -> 1.5.26 m4 1.4.9 -> 1.4.11 Please see ports/UPDATING entry 20080605 for further information. PR: 123450 Tested by: Full -exp package building run Thanks to: linimon, pav Approved by: portmgr
Revision 1.75: download - view: text, markup, annotated - select for diffs
Sun Jun 1 09:34:31 2008 UTC (3 years, 8 months ago) by ade
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +2 -10 lines
Purge 5.x support
Revision 1.74: download - view: text, markup, annotated - select for diffs
Sat Jul 28 10:01:08 2007 UTC (4 years, 6 months ago) by ade
Branches: MAIN
CVS tags: RELEASE_7_0_0, RELEASE_6_3_0, RELEASE_5_EOL
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +1 -1 lines
Fix automake-1.10 and autoconf-2.61 correctly. One bad merge out of 25. Sigh.
Revision 1.73: download - view: text, markup, annotated - select for diffs
Sat Jul 28 06:33:45 2007 UTC (4 years, 6 months ago) by ade
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +12 -21 lines
Update to the autotools new world order. Tested by: numerous package build runs Approved by: portmgr Thanks to: des, kris, linimon, pav
Revision 1.72: download - view: text, markup, annotated - select for diffs
Mon Jul 23 09:35:38 2007 UTC (4 years, 6 months ago) by rafan
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +1 -2 lines
- 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
Revision 1.71: download - view: text, markup, annotated - select for diffs
Sat May 19 20:02:04 2007 UTC (4 years, 8 months ago) by flz
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +1 -2 lines
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Revision 1.70: download - view: text, markup, annotated - select for diffs
Wed Feb 7 10:04:31 2007 UTC (5 years ago) by ade
Branches: MAIN
CVS tags: PRE_XORG_7
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +10 -2 lines
Fix build on RELENG_5, by forcing the use of texinfo-4.8 Submitted by: pointyhat
Revision 1.69: download - view: text, markup, annotated - select for diffs
Wed Jan 31 01:03:39 2007 UTC (5 years ago) by ade
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +1 -0 lines
Fix botched patch, ensuring that automake 1.10 actually uses autoconf 2.61 like it's supposed to. PR: 107672 Submitted by: Charming Sun <snnn119@gmail.com>
Revision 1.68: download - view: text, markup, annotated - select for diffs
Thu Dec 7 10:57:11 2006 UTC (5 years, 2 months ago) by ade
Branches: MAIN
CVS tags: RELEASE_4_EOL
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +9 -9 lines
Say hello to automake 1.10 after repocopy
Revision 1.67: download - view: text, markup, annotated - select for diffs
Thu May 4 21:40:24 2006 UTC (5 years, 9 months ago) by edwin
Branches: MAIN
CVS tags: old_RELEASE_6_2_0
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +0 -1 lines
Remove USE_REINPLACE from all categories starting with D
Revision 1.66: download - view: text, markup, annotated - select for diffs
Tue Nov 15 06:48:34 2005 UTC (6 years, 2 months ago) by ade
Branches: MAIN
CVS tags: old_RELEASE_6_1_0, old_RELEASE_5_5_0
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +1 -1 lines
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.
Revision 1.65: download - view: text, markup, annotated - select for diffs
Thu Jul 28 21:34:19 2005 UTC (6 years, 6 months ago) by ade
Branches: MAIN
CVS tags: old_RELEASE_6_0_0
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +1 -1 lines
Update to 1.9.6
Revision 1.64: download - view: text, markup, annotated - select for diffs
Thu Jun 16 17:29:45 2005 UTC (6 years, 7 months ago) by ade
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +3 -2 lines
Purge WANT_{LIBTOOL,AUTOCONF,AUTOMAKE}_RUN
The versioned autotools are now strictly for building other ports in the tree.
Likewise, the gnu- autotools are for runtime dependencies for IDEs, and others,
where unmodified cross-platform capabilities are desired.
Revision 1.63: download - view: text, markup, annotated - select for diffs
Wed Jun 15 06:28:34 2005 UTC (6 years, 7 months ago) by ade
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +1 -1 lines
All that we see or seem, is but a dream, within a dream. Take back maintainership. I'll be scouring the PR database shortly, if I miss any, or someone beats me to it, please feel free to reassign appropriately.
Revision 1.62: download - view: text, markup, annotated - select for diffs
Tue Apr 12 03:25:04 2005 UTC (6 years, 10 months ago) by obrien
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +1 -1 lines
At Kris's request, back out the MACHINE_ARCH spelling correction until after 5.4-RELEASE.
Revision 1.61: download - view: text, markup, annotated - select for diffs
Mon Apr 11 08:01:39 2005 UTC (6 years, 10 months ago) by obrien
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +1 -1 lines
Assist getting more ports working on AMD64 by obeying the Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
Revision 1.60: download - view: text, markup, annotated - select for diffs
Thu Mar 17 16:20:17 2005 UTC (6 years, 10 months ago) by glewis
Branches: MAIN
CVS tags: old_RELEASE_5_4_0
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +1 -1 lines
. Change pre-install to pre-su-install since the target performs privileged operations. This makes these ports installable by users other than root. PR: 76422 Submitted by: jhb
Revision 1.59: download - view: text, markup, annotated - select for diffs
Mon Feb 28 23:32:13 2005 UTC (6 years, 11 months ago) by ade
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +1 -1 lines
Relinquish maintainership. I no longer have the time, energy, or interest to look after these things any more. To whomever picks these up, I salute you. I'll reset the relevant PRs to ports-bugs in a couple of weeks if no-one has taken over maintainership. Farewell, autotool hell.
Revision 1.58: download - view: text, markup, annotated - select for diffs
Sat Feb 26 03:29:38 2005 UTC (6 years, 11 months ago) by ade
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +3 -2 lines
Update to 1.9.5, cursing a few more gratuitous changes
Revision 1.57: download - view: text, markup, annotated - select for diffs
Tue Dec 28 06:43:00 2004 UTC (7 years, 1 month ago) by ade
Branches: MAIN
CVS tags: old_RELEASE_4_11_0
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +1 -1 lines
Update to 1.9.4
Revision 1.56: download - view: text, markup, annotated - select for diffs
Mon Nov 8 23:31:24 2004 UTC (7 years, 3 months ago) by ade
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +1 -1 lines
Update to 1.9.3
Revision 1.55: download - view: text, markup, annotated - select for diffs
Thu Oct 14 20:48:36 2004 UTC (7 years, 3 months ago) by ade
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +8 -7 lines
Update to 1.9.2, use INFO, and other minor cleanups.
Revision 1.54: download - view: text, markup, annotated - select for diffs
Mon Aug 16 17:48:11 2004 UTC (7 years, 5 months ago) by ade
Branches: MAIN
CVS tags: old_RELEASE_5_3_0
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +1 -1 lines
Update to 1.9.1
Revision 1.53: download - view: text, markup, annotated - select for diffs
Thu Aug 5 20:17:26 2004 UTC (7 years, 6 months ago) by ade
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +3 -4 lines
Update devel/automake19 to 1.9 after repo-copy PR: 69967 (repo-copy request) Submitted by: ade
Revision 1.52: download - view: text, markup, annotated - select for diffs
Tue Aug 3 22:58:10 2004 UTC (7 years, 6 months ago) by ade
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +0 -10 lines
Long-overdue cosmetic cleanups.
Revision 1.51: download - view: text, markup, annotated - select for diffs
Thu Jul 29 19:24:26 2004 UTC (7 years, 6 months ago) by ade
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +13 -1 lines
Actually put in relevant symlinks to the versioned files in
${PREFIX}/bin to non-versioned files in ${PREFIX}/libexec/<autotool><ver>
so that the PATH magic in bsd.autotools.mk works correctly.
Revision 1.50: download - view: text, markup, annotated - select for diffs
Wed Jul 7 00:56:44 2004 UTC (7 years, 7 months ago) by ade
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +2 -0 lines
Expand %%X11BASE%% to the appropriate ${X11BASE} value in aclocal, so
that it can actually find files in ${X11BASE}/share/aclocal if need be.
Revision 1.49: download - view: text, markup, annotated - select for diffs
Tue Jun 8 19:21:46 2004 UTC (7 years, 8 months ago) by ade
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +1 -2 lines
Update to 1.8.5
Revision 1.48: download - view: text, markup, annotated - select for diffs
Wed May 26 21:38:21 2004 UTC (7 years, 8 months ago) by ade
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +3 -3 lines
Ensure that automake uses the correct version of autoconf PR: 67228 Submitted by: Brian Candler <B.Candler@pobox.com>
Revision 1.47: download - view: text, markup, annotated - select for diffs
Thu May 13 20:49:45 2004 UTC (7 years, 9 months ago) by ade
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +1 -2 lines
Update to 1.8.4
Revision 1.46: download - view: text, markup, annotated - select for diffs
Tue Mar 30 04:28:12 2004 UTC (7 years, 10 months ago) by ade
Branches: MAIN
CVS tags: old_old_RELEASE_4_10_0
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +1 -0 lines
Fix one missed instance of pointing to the wrong location in generated configuration files. Submitted by: Andrzej Tobola <A.Tobola@wilk.2a.pl>
Revision 1.45: download - view: text, markup, annotated - select for diffs
Mon Mar 15 01:25:58 2004 UTC (7 years, 10 months ago) by ade
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +8 -9 lines
Say hello to autoconf 2.59 and automake 1.8(.3) after repo-copy. It's likely to be a really bad idea to use these until they're hooked into the new bsd.autotools.mk
Revision 1.44: download - view: text, markup, annotated - select for diffs
Wed Feb 11 19:17:18 2004 UTC (8 years ago) by ade
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +1 -1 lines
Other minor cosmetic changes to COMMENT
Revision 1.43: download - view: text, markup, annotated - select for diffs
Sun Jun 29 04:16:04 2003 UTC (8 years, 7 months ago) by ade
Branches: MAIN
CVS tags: old_old_old_RELEASE_5_2_1, old_old_old_RELEASE_5_2_0, old_old_old_RELEASE_4_9_0
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +5 -4 lines
Put the crack pipe away, and force this !*&@&%^! to use a sensible versioning scheme like the other automake ports. PORTREVISION bump owing to pointy hat sitting on aDe's head.
Revision 1.42: download - view: text, markup, annotated - select for diffs
Sun Jun 29 01:58:52 2003 UTC (8 years, 7 months ago) by ade
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +18 -22 lines
Use the cosmetic BUILD_VERSION variable (a la libtool), switch portnames away from using the version number twice. Unbreak automake17, base on work from Rui Lopes <rui@ruilopes.com>
Revision 1.41: download - view: text, markup, annotated - select for diffs
Mon Jun 9 23:40:13 2003 UTC (8 years, 8 months ago) by ade
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +1 -1 lines
Assume maintainership as part of the whole "gnutools" integration process.
Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun Jun 8 21:13:44 2003 UTC (8 years, 8 months ago) by will
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +0 -0 lines
Please see http://freebsd.kde.org/memoriam/alane.php for an In Memoriam page.
Revision 1.39: download - view: text, markup, annotated - select for diffs
Sun Jun 8 21:06:16 2003 UTC (8 years, 8 months ago) by will
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +1 -1 lines
REST IN PEACE Alan Eldridge Born December 15, 1961 in Iowa Died June 6, 2003 in Denver, Colorado Thank you for your contributions, you will be greatly missed.
Revision 1.38: download - view: text, markup, annotated - select for diffs
Fri May 2 08:44:18 2003 UTC (8 years, 9 months ago) by edwin
Branches: MAIN
CVS tags: old_old_old_RELEASE_5_1_0
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +1 -1 lines
Make BROKEN message displayable. [/usr/ports/devel/automake17] root@k7>ls -al total 54 drwxr-xr-x 3 root wheel 512 May 2 18:42 . drwxr-xr-x 942 portbuild wheel 46080 Apr 28 08:59 .. -rw-r--r-- 1 root wheel 1456 Mar 11 12:48 Makefile -rw-r--r-- 1 root wheel 63 Feb 24 12:00 distinfo drwxr-xr-x 2 root wheel 512 Feb 24 12:00 files -rw-r--r-- 1 root wheel 757 Nov 13 12:25 pkg-descr -rw-r--r-- 1 root wheel 2980 Feb 24 12:00 pkg-plist [/usr/ports/devel/automake17] root@k7>make [/usr/ports/devel/automake17] root@k7>ls -al total 55 drwxr-xr-x 3 root wheel 512 May 2 18:43 . drwxr-xr-x 942 portbuild wheel 46080 Apr 28 08:59 .. -rw-r--r-- 1 root wheel 76 May 2 18:43 = -rw-r--r-- 1 root wheel 1456 Mar 11 12:48 Makefile -rw-r--r-- 1 root wheel 63 Feb 24 12:00 distinfo drwxr-xr-x 2 root wheel 512 Feb 24 12:00 files -rw-r--r-- 1 root wheel 757 Nov 13 12:25 pkg-descr -rw-r--r-- 1 root wheel 2980 Feb 24 12:00 pkg-plist [/usr/ports/devel/automake17] root@k7>make -V BROKEN Needs autoconf >= 254 to build. [/usr/ports/devel/automake17] root@k7>cat = ===> automake17-1.7.2,1 is marked as broken: Needs autoconf 254 to build.. Informed maintainer.
Revision 1.37: download - view: text, markup, annotated - select for diffs
Fri Feb 28 22:52:59 2003 UTC (8 years, 11 months ago) by kris
Branches: MAIN
CVS tags: old_old_old_RELEASE_4_8_0
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +1 -1 lines
Use pre-everything:: instead of pre-everything: to avoid conflict with targets in bsd.port.mk
Revision 1.36: download - view: text, markup, annotated - select for diffs
Sun Feb 23 19:59:42 2003 UTC (8 years, 11 months ago) by alane
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +21 -12 lines
get this into the tree but marked broken
Revision 1.35: download - view: text, markup, annotated - select for diffs
Thu Feb 13 11:44:07 2003 UTC (8 years, 11 months ago) by alane
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +1 -1 lines
prepare for real port
Revision 1.34: download - view: text, markup, annotated - select for diffs
Fri Feb 7 02:44:19 2003 UTC (9 years ago) by seanc
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +0 -1 lines
Correct ports that were abusing the FORBIDDEN variable and replace with either IGNORE or BROKEN. Since there seems to be some confusion, for the record: BROKEN is reserved for ports that don't work. This will prevent users from installing the port, but please note that ports marked as BROKEN will still be built by bento IGNORE is reserved for ports that should not be built for one reason or another (including bento). Users and bento will not build ports marked as IGNORE. FORBIDDEN is reserved for security breakages only!!! Only mark a port as FORBIDDEN if there is a security issue with the port at the time. Reviewed by: kris (portmgr)
Revision 1.33: download - view: text, markup, annotated - select for diffs
Mon Nov 25 01:01:38 2002 UTC (9 years, 2 months ago) by alane
Branches: MAIN
CVS tags: old_old_old_RELEASE_5_0_0
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +2 -1 lines
Add explicit ignore assignments to try to get bento to leave this shit alone.
Revision 1.32: download - view: text, markup, annotated - select for diffs
Sun Nov 3 12:14:41 2002 UTC (9 years, 3 months ago) by alane
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +5 -6 lines
1. Update version to 1.7.1. 2. Rewrote pkg-comment and pkg-descr files. 3. Marked pkg-plist file as not done. 4. Made do-build and do-install targets indicating that this port is not at all ready to even be looked at. The repocopy was a placeholder for when I can get to it.
Revision 1.31: download - view: text, markup, annotated - select for diffs
Fri Nov 1 13:09:29 2002 UTC (9 years, 3 months ago) by alane
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +1 -1 lines
Remove the StUdLyCaPs from maintainer name, 'cause some folks won't realize mail's case insensitive and will try to type that. Sorry folks, purely a cosmetic change here, nothing to see, move along, move along....
Revision 1.30: download - view: text, markup, annotated - select for diffs
Fri Nov 1 04:17:49 2002 UTC (9 years, 3 months ago) by alane
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +1 -1 lines
Changed MAINTAINER to my FreeBSD address.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Mon Oct 21 00:04:38 2002 UTC (9 years, 3 months ago) by alane
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -2 lines
Removed erroneous ${DESTDIR} that I put in Makefile pre-/post- targets.
Revision 1.28: download - view: text, markup, annotated - select for diffs
Tue Oct 15 06:50:50 2002 UTC (9 years, 3 months ago) by alane
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +3 -2 lines
1. Renamed patch files. 2. Updated version & distinfo.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Tue Oct 15 05:55:37 2002 UTC (9 years, 3 months ago) by alane
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +6 -1 lines
Undef NO_IGNORE. Mark as BORKED, BROKEN, and FORBIDDEN.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Sun Oct 13 13:04:06 2002 UTC (9 years, 4 months ago) by alane
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +10 -4 lines
1. Made post-install DESTDIR-safe. 2. Made nicer message when USE_AUTOMAKE* is defined. 3. Removed unneeded WRKSRC= line.
Revision 1.25: download - view: text, markup, annotated - select for diffs
Mon Sep 16 07:51:45 2002 UTC (9 years, 4 months ago) by alane
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_4_7_0
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +1 -1 lines
Take maintainership since Ade Lovett departed and I know these programs pretty well.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Sat Sep 14 13:32:00 2002 UTC (9 years, 4 months ago) by sobomax
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +4 -0 lines
Due to popular demant into each port which might be inserted into dependency list by bsd.port.mk insert anti foot-shooting device, which prevents infinite fork loop when the user defines corresponding USE_XXX in global make.conf, command line or environment. Similar devices should probably be inserted into ports that might be inserted into dependency list by others bsd.foo.mk files (bsd.ruby.mk, bsd.python.mk and so on.)
Revision 1.23: download - view: text, markup, annotated - select for diffs
Sat Sep 7 08:44:44 2002 UTC (9 years, 5 months ago) by ade
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +1 -1 lines
Relinquish all my ports.
Revision 1.22: download - view: text, markup, annotated - select for diffs
Thu Aug 1 02:38:30 2002 UTC (9 years, 6 months ago) by ade
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +1 -1 lines
Stage a mini-coup, and borrow these ports from portmgr@ for a while, since I'm doing most of the updating, and am working on a port/Mk/bsd.<gnublah>.mk to move some cruft around. Sponsored by: Mr. Smith and Mr. Wesson. :)
Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Oct 30 08:28:01 2001 UTC (10 years, 3 months ago) by sobomax
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_5_0_DP1, old_old_old_old_RELEASE_4_6_2, old_old_old_old_RELEASE_4_6_1, old_old_old_old_RELEASE_4_6_0, old_old_old_old_RELEASE_4_5_0
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +1 -0 lines
Put back PORTEPOCH, which was erroneously deleted in one of the previous commits. Repeat after me: once set PORTEPOCH could not be decreased or deleted.
Revision 1.20: download - view: text, markup, annotated - select for diffs
Mon Oct 29 01:46:00 2001 UTC (10 years, 3 months ago) by obrien
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +1 -4 lines
[Re]Update to version 1.5. The legacy version is known as 'automake14' for those that find automake 1.5 incompatible.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Oct 8 07:24:07 2001 UTC (10 years, 4 months ago) by sobomax
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +6 -3 lines
(portmgr@ hat on) - Backout recent upgrade because it broke way too many ports; - assign maintainership to portmgr@FreeBSD.org due to importancy of this port to the overall ports infrastructure.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Sun Oct 7 12:18:34 2001 UTC (10 years, 4 months ago) by demon
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -4 lines
Update to version 1.5.
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Aug 11 09:32:09 2001 UTC (10 years, 6 months ago) by sobomax
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_4_4_0
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -1 lines
Turn famous `duplicated macro ...' into a warning rather than an error.
Revision 1.16: download - view: text, markup, annotated - select for diffs
Fri Jul 20 18:01:33 2001 UTC (10 years, 6 months ago) by demon
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +3 -3 lines
Update to 1.4-p5.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Fri Jul 20 18:00:50 2001 UTC (10 years, 6 months ago) by demon
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +5 -3 lines
Update to 1.4-p4. patch-ac was integrated into distribution. MAINTAINER timeout.
Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat Jul 15 19:07:44 2000 UTC (11 years, 6 months ago) by ade
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_4_3_0, old_old_old_old_RELEASE_4_2_0, old_old_old_old_RELEASE_4_1_1, old_old_old_old_RELEASE_4_1_0
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +4 -1 lines
Persuade automake to look not only in ${PREFIX}/share/aclocal
(ie: ${LOCALBASE}), but also ${X11BASE}/share/aclocal via an extra
patch and some configure-time substitution
Discussed on: ports (quite a while back)
Original disgusting hack by: ade
Suggested improvements by: asami
Reworked patch by: ade
Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Apr 11 21:27:08 2000 UTC (11 years, 10 months ago) by mharo
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_3_5_0
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +3 -3 lines
PORTNAME/PORTVERSION update
Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Aug 25 05:47:24 1999 UTC (12 years, 5 months ago) by obrien
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_4_0_0, old_old_old_old_RELEASE_3_4_0, old_old_old_old_RELEASE_3_3_0
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +1 -1 lines
Change Id->FreeBSD.
Revision 1.11: download - view: text, markup, annotated - select for diffs
Sat Jun 5 22:28:35 1999 UTC (12 years, 8 months ago) by mharo
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +1 -4 lines
Remove the test to create ${PREFIX}/share/info/dir as it is now
in bsd.port.mk and this helps to unify the check and install.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Sat Jan 30 19:11:20 1999 UTC (13 years ago) by sada
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_3_2_0, old_old_old_old_RELEASE_3_1_0
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +3 -3 lines
Update to 1.4. PR: ports/9767 Submitted by: Steve Coltrin <spcoltri@io.com>
Revision 1.9: download - view: text, markup, annotated - select for diffs
Wed Jan 27 07:41:06 1999 UTC (13 years ago) by fenner
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -1 lines
${MASTER_SITE_GNU} got rearranged in December; let's catch up.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Sat Dec 12 03:59:35 1998 UTC (13 years, 2 months ago) by jseger
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +4 -2 lines
Make this use perl5 PR: 7463
Revision 1.7: download - view: text, markup, annotated - select for diffs
Wed Sep 23 16:11:36 1998 UTC (13 years, 4 months ago) by vanilla
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_3_0_0, old_old_old_old_RELEASE_2_2_8
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +4 -2 lines
Fix info page problem.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Mon May 4 03:03:34 1998 UTC (13 years, 9 months ago) by vanilla
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_2_2_7
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +3 -3 lines
Upgrade to 1.3, remove @dirrm share/aclocal on pkg/PLIST, because another package use the directory too (guile)
Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Sep 19 09:29:04 1997 UTC (14 years, 4 months ago) by max
Branches: MAIN
CVS tags: old_old_old_old_RELEASE_2_2_6, old_old_old_old_RELEASE_2_2_5
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +6 -5 lines
Some patches submitted as PR are not suitable to be committed blindly and
previous changes to this port was one of them. This commit fixes:
- We definetely need to check the existence of ${PREFIX}/dir and generate
it if needed before install-info gets invoked.
- Use empty definition of STRIP instead of changing every appearance
of ${INSTALL_SCRIPT} in Makefile.in to ${INSTALL} especially since
this port installs no files that need to be stripped.
- No need to add rule to regenerate .info file when there's one in the
distributed Makefile.in.
- Instead of removing old piece of .info files in post-install target,
leave it to the .texi.info: rule in the distributed Makefile.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Fri Sep 19 07:13:28 1997 UTC (14 years, 4 months ago) by tg
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +5 -7 lines
Upgrade to 1.2. PR: 4577 Submitted by: Vanill I. Shu <vanilla@MinJe.com.TW>
Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Jun 13 20:01:42 1997 UTC (14 years, 8 months ago) by max
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +4 -4 lines
sed -> ${SED}.
@'ed install-info related commands.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Fri Jun 13 06:49:31 1997 UTC (14 years, 8 months ago) by max
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +7 -1 lines
Use install-info to add the entry for automake.info to the dir file.
Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Tue May 27 16:40:49 1997 UTC (14 years, 8 months ago) by max
Branches: old_old_old_old_fujimoto
CVS tags: old_old_old_old_AUTOMAKE_1_0
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
New port, automake: GNU Standards-compliant Makefile generator PR: 3199 Submitted by: FUJIMOTO Kensaku <fujimoto@oscar.elec.waseda.ac.jp>
Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue May 27 16:40:49 1997 UTC (14 years, 8 months ago) by max
Branches: MAIN
Initial revision
