notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: security/beecrypt/Makefile
SVNWeb

Number of commits found: 42

Wed, 7 Sep 2022
[ 21:10 Stefan Eßer (se) search for other commits by this committer ]    commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  b7f0544  (Only the first 10 of 27931 ports in this commit are shown above. View all ports for this commit)
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 View all of this commit message)
Wed, 20 Jul 2022
[ 14:22 Tobias C. Berner (tcberner) search for other commits by this committer ]    commit hash:857c05f8674c5f4c990f49f9d0fb7034ebd340fe  commit hash:857c05f8674c5f4c990f49f9d0fb7034ebd340fe  commit hash:857c05f8674c5f4c990f49f9d0fb7034ebd340fe  857c05f  (Only the first 10 of 840 ports in this commit are shown above. View all ports for this commit)
security: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  <ports@c0decafe.net>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Aldis Berjoza <aldis@bsdroot.lv>
  *  Alex Dupre <ale@FreeBSD.org>
  *  Alex Kapranoff <kappa@rambler-co.ru>
  *  Alex Samorukov <samm@freebsd.org>
  *  Alexander Botero-Lowry <alex@foxybanana.com>
  *  Alexander Kriventsov <avk@vl.ru>
  *  Alexander Leidinger <netchild@FreeBSD.org>
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Tue, 21 Sep 2021
[ 12:57 Bernhard Froehlich (decke) search for other commits by this committer ]    commit hash:2ec126b9a5b6b0819837f90ecab1cb63dfd12b4f  commit hash:2ec126b9a5b6b0819837f90ecab1cb63dfd12b4f  commit hash:2ec126b9a5b6b0819837f90ecab1cb63dfd12b4f  2ec126b 
security/beecrypt: Add CPE information

Approved by:    portmgr (blanket)
Tue, 6 Apr 2021
[ 14:31 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  305f148  (Only the first 10 of 29333 ports in this commit are shown above. View all ports for this commit)
Remove # $FreeBSD$ from Makefiles.
Wed, 27 May 2020
[ 15:31 danfe search for other commits by this committer ] Original commit   Revision:536695 (Only the first 10 of 23 ports in this commit are shown above. View all ports for this commit)
Sanitize COMMENT per Section 5.6 of the FreeBSD Porter's Handbook (part 4).
Thu, 27 Jun 2019
[ 17:17 amdmi3 search for other commits by this committer ] Original commit   Revision:505211
- Add LICENSE
- Switch to new test framework

Approved by:	portmgr blanket
Sun, 30 Apr 2017
[ 04:35 linimon search for other commits by this committer ] Original commit   Revision:439789 (Only the first 10 of 25 ports in this commit are shown above. View all ports for this commit)
Provide more descriptive error messages for ports failing on powerpc64.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
Thu, 21 Apr 2016
[ 16:43 swills search for other commits by this committer ] Original commit   Revision:413746 (Only the first 10 of 419 ports in this commit are shown above. View all ports for this commit)
many ports: mark broken on powerpc64
Mon, 7 Jul 2014
[ 19:27 tijl search for other commits by this committer ] Original commit   Revision:361123
- Convert to USES=libtool
- Add INSTALL_TARGET=install-strip
- Remove use of PTHREAD_LIBS
Sat, 21 Jun 2014
[ 23:59 adamw search for other commits by this committer ] Original commit   Revision:358758
Turn "WITH_OPENMP" into a proper OPTION.
Mon, 5 May 2014
[ 09:45 bapt search for other commits by this committer ] Original commit   Revision:352986 (Only the first 10 of 293 ports in this commit are shown above. View all ports for this commit)
Convert all :U to :tu and :L to :tl

Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
Sun, 27 Apr 2014
[ 21:37 mi search for other commits by this committer ] Original commit   Revision:352464
When -march=FOO happens to be among CFLAGS, unexpected things could
occur (for example, -march=core2 used to break build). Not a FreeBSD
problem even -- Linux crowd was bitten by this too (and misdiagnosed
it). Our package-building does not include the flag, which is why
we haven't seen this before.

Attempt to help configure better detect the architecture and
CPU-capabilities -- and use assembler-implementations of various
routines, where possible. ("make check" is almost 30% faster now)

Ensure, SSE2-specific code builds properly with clang as well as gcc.

Ensure, the author's "make check" runs as regression-test.

Add another patch found on SourceForge.

(Attempt to) unbreak on PowerPC -- untested.

Bump PORTREVISION. Take maintainership for the time being, to deal
with any fallout.
Wed, 25 Sep 2013
[ 00:54 bdrewery search for other commits by this committer ] Original commit   Revision:328226 (Only the first 10 of 179 ports in this commit are shown above. View all ports for this commit)
- Remove NO_STAGE as these have been tested to be safe

With hat:	portmgr
Fri, 20 Sep 2013
[ 22:55 bapt search for other commits by this committer ] Original commit   Revision:327769 (Only the first 10 of 1016 ports in this commit are shown above. View all ports for this commit)
Add NO_STAGE all over the place in preparation for the staging support (cat:
security)
Wed, 27 Apr 2011
[ 01:56 dougb search for other commits by this committer ] Original commit  (Only the first 10 of 33 ports in this commit are shown above. View all ports for this commit)
By Maintainer's request, toss these ports back into the pool
Sat, 4 Dec 2010
[ 07:34 ade search for other commits by this committer ] Original commit  (Only the first 10 of 1730 ports in this commit are shown above. View all ports for this commit)
Sync to new bsd.autotools.mk
Thu, 1 Apr 2010
[ 05:51 linimon search for other commits by this committer ] Original commit 
Mark as broken on powerpc.

Hat:            portmgr
Tue, 23 Feb 2010
[ 21:08 glarkin search for other commits by this committer ] Original commit 
- Updated to 4.2.1
- Passed to new maintainer
- Option added to enable OpenMP

PR:             ports/139556
Submitted by:   Charlie Kester <corky1951@comcast.net> (new maintainer)
Feature safe:   yes
Sat, 22 Aug 2009
[ 00:35 amdmi3 search for other commits by this committer ] Original commit  (Only the first 10 of 349 ports in this commit are shown above. View all ports for this commit)
- Switch SourceForge ports to the new File Release System: categories starting
with P,R,S
Sun, 2 Aug 2009
[ 19:36 mezz search for other commits by this committer ] Original commit  (Only the first 10 of 1514 ports in this commit are shown above. View all ports for this commit)
-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 search for other commits by this committer ] Original commit  (Only the first 10 of 1030 ports in this commit are shown above. View all ports for this commit)
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 View all of this commit message)
Thu, 1 Feb 2007
[ 02:42 kris search for other commits by this committer ] Original commit  (Only the first 10 of 348 ports in this commit are shown above. View all ports for this commit)
Use libtool port instead of included version to avoid objformat a.out botch
Tue, 15 Aug 2006
[ 01:04 clsung search for other commits by this committer ] Original commit  (Only the first 10 of 49 ports in this commit are shown above. View all ports for this commit)
- 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>
Sat, 13 May 2006
[ 04:15 edwin search for other commits by this committer ] Original commit  (Only the first 10 of 275 ports in this commit are shown above. View all ports for this commit)
Remove USE_REINPLACE from all categories starting with S
Thu, 23 Feb 2006
[ 10:40 ade search for other commits by this committer ] Original commit  (Only the first 10 of 2514 ports in this commit are shown above. View all ports for this commit)
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
Tue, 15 Nov 2005
[ 06:52 ade search for other commits by this committer ] Original commit  (Only the first 10 of 1438 ports in this commit are shown above. View all ports for this commit)
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.
Thu, 21 Apr 2005
[ 17:44 krion search for other commits by this committer ] Original commit  (Only the first 10 of 22 ports in this commit are shown above. View all ports for this commit)
Drop maintership.
Tue, 12 Apr 2005
[ 03:26 obrien search for other commits by this committer ] Original commit  (Only the first 10 of 773 ports in this commit are shown above. View all ports for this commit)
At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
Mon, 11 Apr 2005
[ 08:04 obrien search for other commits by this committer ] Original commit  (Only the first 10 of 776 ports in this commit are shown above. View all ports for this commit)
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
Sun, 26 Dec 2004
[ 18:45 krion search for other commits by this committer ] Original commit 
Update to 4.1.2
Sat, 27 Nov 2004
[ 10:03 krion search for other commits by this committer ] Original commit 
Update to 4.1.1
Fri, 9 Jul 2004
[ 17:43 marcus search for other commits by this committer ] Original commit  (Only the first 10 of 489 ports in this commit are shown above. View all ports for this commit)
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
Tue, 25 May 2004
[ 05:31 krion search for other commits by this committer ] Original commit 
- Remove dead MASTER_SITES

PR:             ports/67156
Submitted by:   Roman Neuhauser <neuhauser@chello.cz>
Fri, 16 Apr 2004
[ 14:42 krion search for other commits by this committer ] Original commit  (Only the first 10 of 20 ports in this commit are shown above. View all ports for this commit)
- Remove USE_SIZE knob
Sun, 14 Mar 2004
[ 06:17 ade search for other commits by this committer ] Original commit  (Only the first 10 of 945 ports in this commit are shown above. View all ports for this commit)
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.
Fri, 30 Jan 2004
[ 14:05 krion search for other commits by this committer ] Original commit  (Only the first 10 of 108 ports in this commit are shown above. View all ports for this commit)
- SIZEify
Mon, 18 Aug 2003
[ 10:33 krion search for other commits by this committer ] Original commit 
- Update to 3.1.0
Tue, 22 Jul 2003
[ 10:34 krion search for other commits by this committer ] Original commit  (Only the first 10 of 56 ports in this commit are shown above. View all ports for this commit)
Change my mail to @FreeBSD.org

Approved by:    fjoe (mentor)
Sun, 22 Jun 2003
[ 03:14 ijliao search for other commits by this committer ] Original commit 
upgrade to 3.0.0
pass maintainership to submitter

PR:             53586
Submitted by:   Kirill Ponomarew <ponomarew@oberon.net>
Fri, 7 Mar 2003
[ 06:10 ade search for other commits by this committer ] Original commit  (Only the first 10 of 182 ports in this commit are shown above. View all ports for this commit)
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
Thu, 14 Jun 2001
[ 06:42 ijliao search for other commits by this committer ] Original commit 
upgrade to 2.1.0    
Sun, 4 Mar 2001
[ 04:37 ijliao search for other commits by this committer ] Original commit 
add beecrypt, an open source cryptography library    

Number of commits found: 42