non port: math/tvmet/Makefile |
SVNWeb
|
Number of commits found: 29 |
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above )
|
Wed, 20 Jul 2022
|
[ 14:22 Tobias C. Berner (tcberner) ] f53eb28 (Only the first 10 of 719 ports in this commit are shown above. )
math: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Alessando Sagratini <ale_sagra@hotmail.com>
* Alex Dupre <ale@FreeBSD.org>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Amarendra Godbole <amarendra.godbole@gmail.com>
* Anders Nordby <anders@FreeBSD.org>
* Andreas Fehlner (fehlner@gmx.de)
* Andrew L. Neporada <andrew@chg.ru>
* Andrey <gugu@zoo.rambler.ru>
* Andrey Zakhvatov (Only the first 15 lines of the commit message are shown above )
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Sat, 8 Oct 2016
|
[ 09:01 amdmi3 ]
- Switch to options helpers
|
Fri, 1 Apr 2016
|
[ 14:16 mat ] (Only the first 10 of 2612 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight
|
Tue, 12 Jan 2016
|
[ 16:20 amdmi3 ] (Only the first 10 of 791 ports in this commit are shown above. )
Convert LICENSE= "GPLxx # or later" to "GPLxx+"
Approved by: portmgr blanket
|
Tue, 29 Jul 2014
|
[ 23:40 amdmi3 ]
- Switch devel/cppunit to USES=libtool, drop .la files
Approved by: portmgr blanket
|
Fri, 30 May 2014
|
[ 18:42 amdmi3 ]
- Convert USE_BZIP2 to USES
- Clarify LICENSE
- Switch to USES=libtool
|
Sat, 30 Nov 2013
|
[ 11:04 wg ]
math/tvmet: fix build with clang
- Fix build with clang
- Add LICENSE (LGPL21)
- USES gmake
- Allow staging
PR: ports/184240
Submitted by: KATO Tsuguru <tkato432 yahoo.com>
|
Fri, 20 Sep 2013
|
[ 20:55 bapt ] (Only the first 10 of 665 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
math)
|
Fri, 18 Nov 2011
|
[ 23:30 ehaupt ] (Only the first 10 of 46 ports in this commit are shown above. )
Remove trailing whitespaces.
Feature safe: yes
|
Sat, 4 Dec 2010
|
[ 07:34 ade ] (Only the first 10 of 1730 ports in this commit are shown above. )
Sync to new bsd.autotools.mk
|
Sat, 22 Aug 2009
|
[ 00:28 amdmi3 ] (Only the first 10 of 287 ports in this commit are shown above. )
- Switch SourceForge ports to the new File Release System: categories starting
with M
|
Sun, 2 Aug 2009
|
[ 19:36 mezz ] (Only the first 10 of 1514 ports in this commit are shown above. )
-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
|
Thu, 21 Aug 2008
|
[ 06:18 rafan ] (Only the first 10 of 1030 ports in this commit are shown above. )
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 )
|
Mon, 23 Jul 2007
|
[ 09:36 rafan ] (Only the first 10 of 437 ports in this commit are shown above. )
- 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
|
Mon, 2 Jul 2007
|
[ 12:12 miwi ]
- Update to 1.7.2
PR: 114076
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
|
Mon, 6 Jun 2005
|
[ 18:11 pav ]
- Update to 1.7.1
- Provide WITH_CPPUNIT knob
PR: ports/81959
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
|
Tue, 12 Apr 2005
|
[ 03:26 obrien ] (Only the first 10 of 773 ports in this commit are shown above. )
At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
|
Mon, 11 Apr 2005
|
[ 08:04 obrien ] (Only the first 10 of 776 ports in this commit are shown above. )
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
|
Fri, 6 Jun 2003
|
[ 18:00 naddy ]
Update to version 1.1.0.
PR: 52933
Submitted by: Ports Fury
|
Thu, 1 May 2003
|
[ 23:59 naddy ]
Update to version 1.0.1
PR: 51377
Submitted by: Ports Fury
|
[ 22:32 naddy ]
Update to version 1.0.0
PR: 51232
Submitted by: Ports Fury
|
Thu, 20 Feb 2003
|
[ 18:42 knu ] (Only the first 10 of 122 ports in this commit are shown above. )
De-pkg-comment.
|
Thu, 2 Jan 2003
|
[ 19:06 ijliao ]
upgrade to 0.7.0
PR: 46135
Submitted by: Ports Fury
|
Wed, 20 Nov 2002
|
[ 13:01 ijliao ]
ugprade to 0.6.0
PR: 45444
Submitted by: Ports Fury
|
Fri, 18 Oct 2002
|
[ 21:27 obraun ]
Upgrade to 0.5.1.
PR: 44232
Submitted by: KATO Tsuguru <tkato@prontomail.com>
|
Wed, 16 Oct 2002
|
[ 21:28 obraun ]
Upgrade to 0.5.0.
PR: ports/44116
Submitted by: KATO Tsuguru <tkato@prontomail.com>
|
Thu, 25 Jul 2002
|
[ 08:12 ijliao ]
add tvmet 0.4.0
Tiny Vector and Matrix template library
|
Number of commits found: 29 |