non port: irc/dancer/Makefile |
Number of commits found: 21 |
Saturday, 30 Mar 2024
|
20:54 Alexey Dokuchaev (danfe)
Undeprecate and adopt three more ports that I still consider useful.
4f76884 |
Sunday, 25 Feb 2024
|
12:40 Daniel Engberg (diizzy)
irc/dancer: Deprecate and set expiration date to 2024-03-31
Abandonware, last release in 2001 and no longer developed
Reference: https://daniel.haxx.se/about.html
c3fcb93 |
Wednesday, 1 Nov 2023
|
22:11 Rodrigo Osorio (rodrigo)
*/*: Update WWW to use HTTPS for sourceforge.net projects
Homepage link is permanent redirected to its HTTPS counterpart
05f0f44 |
Wednesday, 7 Sep 2022
|
21:10 Stefan Eßer (se)
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.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
b7f0544 |
Wednesday, 20 Jul 2022
|
14:22 Tobias C. Berner (tcberner)
irc: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* A. Gabriel <backslash@BSDCode.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Alexey Mikhailov <karma@ez.pereslavl.ru>
* Alfred Perlstein <alfred@FreeBSD.org>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
* Ben Hutchinson <benhutch@xfiles.org.uk>
* Bill Fumerola <billf@chc-chimes.com>
* Chess Griffin <chess@chessgriffin.com>
* Chris Piazza <cpiazza@FreeBSD.org>
* Craig Edwards <brain@mail1.chatspike.net>
* David Bushong <david+ports@bushong.net>
* David Taylor <davidt@yadt.co.uk>
* Dennis Herrmann <adox@mcx2.org>
* Dominic Marks <dom@cus.org.uk>
* Edini <ports@edini.net>
* Eugeny Kuzakov <CoreDumped@CoreDumped.null.ru>
* Evgueni V. Gavrilov <aquatique@rusunix.org>
* George Reid <greid@ukug.uk.freebsd.org>
* Gerrit Beine <tux@pinguru.net>
* Gustau Perez <gustau.perez@gmail.com>
* Hye-Shik Chang
* Jase Thew <freebsd@beardz.net>
* Jens Holmqvist <zparta@hispan.se>
* Jimbo Bahooli <griffin@blackhole.iceworld.org>
* Jonas Kvinge <jonas@night-light.net>
* Josh Paetzel <josh@tcbug.org>
* Julien Laffaye <kimelto@gmail.com>
* KIMURA Yasuhiro <yasu@utahime.org>
* Kirill Ponomarew <ponomarew@oberon.net>
* Kubilay Kocak <koobs@FreeBSD.org>
* Makoto Matsushita <matusita@FreeBSD.org>
* Martin Wilke <miwi@FreeBSD.org
* Martin Wilke <miwi@FreeBSD.org>
* Masahiro Teramoto <markun@onohara.to>
* Matthew West <mwest@uct.ac.za>
* Maxim Ignatenko
* Michael Ranner
* Oliver Eikemeier
* Philippe Audeoud <jadawin@tuxaco.net>
* Romain Tartiere <romain@blogreen.org>
* Rusmir Dusko <nemysis@FreeBSD.org>
* Sergey Skvortsov <skv@protey.ru>
* Shaun Amott <shaun@inerd.com>
* Steve Wills <swills@FreeBSD.org>
* TAKATSU Tomonari <tota@FreeBSD.org>
* TERAMOTO Masahiro <markun@onohara.to>
* Tim Bishop <tim@bishnet.net>
* Timothy Redaelli <drizzt@gufi.org>
* Travis Poppe <tlp@liquidx.org>
* Ulrich Spoerlein <q@uni.de>
* Vsevolod Stakhov <vsevolod@highsecure.ru>
* Walter Venable <weaseal@hotmail.com>
* Walter Venable <weaseal@users.sourceforge.net>
* Wen Heping <wenheping@gmail.com>
* Will Andrews <andrews@technologist.com>
* clement
* db
* elvstone@gmail.com
* gahr
* hrs
* ijliao
* koji@jet.es
* milki <milki@rescomp.berkeley.edu>
* perlguy@perlguy.com
* pgl@instinct.org
* sec@42.org
* tdb
* torstenb
With hat: portmgr
6ec0477 |
Monday, 10 Jan 2022
|
15:15 Stefan Eßer (se)
Fix CONFLICTS entries of multiple ports
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.
This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.
Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).
A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.
These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,
Approved by: portmgr (implicit)
bcaf25a |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Wednesday, 16 Oct 2013
|
03:09 eadler
- Convert to staging.
 |
Friday, 20 Sep 2013
|
18:44 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
irc)
 |
Monday, 3 Dec 2012
|
21:05 mandree
USE_CSTD=gnu89 to fix build with clang (hopefully on HEAD, too.)
This is due to C89 inline semantics being used that cause linker failures when
compiled as C99.
Feature safe: yes
 |
Saturday, 28 Jul 2012
|
15:57 cs
Fix typos in COMMENT
Approved by: portmgr@ (implicit)
 |
Monday, 8 Nov 2010
|
15:01 pav
- Fix build by letting configure come up with it's own value of ${CPP}
Reported by: pointyhat
 |
Saturday, 22 Aug 2009
|
00:24 amdmi3
- Switch SourceForge ports to the new File Release System: categories starting
with H,I,J,K,L
 |
Wednesday, 18 Apr 2007
|
11:46 gabor
- Remove FreeBSD 4.X support from unmaintained ports in categories starting
with letter i-m
 |
Wednesday, 18 Oct 2006
|
12:16 erwin
Use INSTALL_PROGRAM instead of INSTALL_DATA on the installed binary
to make sure the permissions are right so it can actually be run.
Approved by: portmgr (self)
 |
Wednesday, 8 Jun 2005
|
13:54 vs
Redo CONFIGURE/MAKE_ARGS handling
 |
Friday, 17 Oct 2003
|
06:53 erwin
Fix build on -current
PR: 58143
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
 |
Wednesday, 24 Sep 2003
|
08:37 edwin
Cease FreeBSD port maintainerships
I don't have the time to give to many of the ports I maintain at
the moment. I wasn't expecting to be so busy this summer ...
Please set all my ports back to ports@freebsd.org.
PR: ports/56935
Submitted by: Dominic Marks <dom@wirespeed.org.uk>,Clement Laforet
<sheepkiller@cultdeadsheep.org>,Oliver Eikemeier <eikemeier@fillmore-labs.com>
 |
Monday, 8 Sep 2003
|
12:15 erwin
Mark broken on -CURRENT, it does not compile with our gcc.
Informed author.
 |
Tuesday, 24 Jun 2003
|
01:06 leeym
update maintainer's email address.
PR: 53658
Submitted by: Dominic Marks <dom@cus.org.uk>
 |
Friday, 20 Jun 2003
|
05:25 daichi
Add dancer 4.16,
an IRC bot written in C for UNIX, Windows, and
AmigaOS.
PR: 46706
Submitted by: Dominic Marks <dom@cus.org.uk>
 |
Number of commits found: 21 |