Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.1.1_7 07 Sep 2022 21:10:59 |
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.
(Only the first 15 lines of the commit message are shown above ) |
1.1.1_7 20 Jul 2022 14:22:30 |
Tobias C. Berner (tcberner) |
multimedia: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Aaron LI <aly@aaronly.me>
* Alexander Botero-Lowry <alexbl@FreeBSD.org>
* Alexander Logvinov <ports@logvinov.com>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Anders Nordby <anders@FreeBSD.org>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Andrew Thompson <andy@fud.org.nz>
* Andrew Thompson <thompsa@FreeBSD.org>
* Angel Carpintero <ack@telefonica.net>
* Anish Mistry (with help from mean)
* Anonymous <swell.k@gmail.com> (Only the first 15 lines of the commit message are shown above ) |
1.1.1_7 10 Jun 2021 13:48:47 |
Christian Weisgerber (naddy) |
*/*: Add a backup master site to all Xiph.org ports
The downloads.xiph.org master site requires TLS1.3, which is not
supported by FreeBSD 11's OpenSSL and fetch(1). Add ftp.osuosl.org
as a backup to all Xiph.org ports.
PR: 256515
Reported by: Daniel Engberg |
1.1.1_7 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.1.1_7 25 Oct 2018 09:30:12 |
amdmi3 |
- Switch to USES=localbase
- Add testing support
- Update WWW
Approved by: portmgr blanket |
1.1.1_7 27 Feb 2018 13:03:48 |
mat |
Switch some MASTER_SITES from http/ftp to https.
Also some cleanup of dead entries.
PR: 226203
Submitted by: Sam H
Sponsored by: Absolight |
1.1.1_7 09 Dec 2016 12:57:31 |
sunpoet |
- Add LICENSE
- Add missing LIB_DEPENDS and solve a stage-qa error
libogg is a required dependency. PORTREVISION was not bumped because libogg
is already a package dependency via audio/libvorbis.
from README:
Requirements summary:
For libtheora:
libogg 1.1 or newer.
====> Running Q/A tests (stage-qa)
Error: /usr/local/lib/libtheora.so.0.3.10 is linked to
/usr/local/lib/libogg.so.0 from audio/libogg but it is not declared as a
dependency
Warning: you need LIB_DEPENDS+=libogg.so:audio/libogg
Approved by: portmgr (blanket) |
1.1.1_7 08 Dec 2016 15:38:24 |
tijl |
Remove libogg.so.8, libvorbis.so.4 and libvorbisfile.so.6 compatibility
links that were added in r374303 to prevent massive PORTREVISION bumps.
Bump dependent ports that have not been bumped since. |
1.1.1_6 21 Oct 2016 15:21:13 |
mat |
Use USES=pathfix where applicable.
PR: 213195
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D8093 |
1.1.1_6 01 Apr 2016 14:16:20 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
1.1.1_6 08 Oct 2015 15:12:22 |
olgeni |
Remove trailing whitespace from Makefiles, M-X. |
1.1.1_6 01 Feb 2015 20:24:28 |
amdmi3 |
- Drop @dirrm* from and add empty directories to pkg-plists
Approved by: portmgr blanket |
1.1.1_6 19 Sep 2014 13:46:57 |
tijl |
Drop .la files and add INSTALL_TARGET=install-strip |
1.1.1_5 29 Jul 2014 18:41:17 |
adamw |
Convert a bunch of USE_BZIP2 to USES=tar:bzip2
Approved by: portmgr (not really, but touches unstaged ports) |
1.1.1_5 11 Jun 2014 14:50:00 |
tijl |
Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS. Also remove references to
PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
required additional patches.
Somewhat simplified a linker command line looks like:
${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}
where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us. If possible -L and -l flags need to be (Only the first 15 lines of the commit message are shown above ) |
1.1.1_5 23 Apr 2014 13:25:17 |
tijl |
When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la. So everything that subsequently links with libA will also
link to these extra libraries. This causes too much overlinking.
This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging. However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.
So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).
(Only the first 15 lines of the commit message are shown above ) |
1.1.1_4 02 Mar 2014 22:40:50 |
bapt |
Convert to USES=libtool |
1.1.1_3 11 Feb 2014 23:01:44 |
bapt |
Fix configure with clang3.4
Submitted by: dim |
1.1.1_3 24 Sep 2013 06:24:17 |
bapt |
Remove NO_STAGE to ports natively stage ready shown by a FORCE_STAGE exp-run
Exp-run by: bdrewery |
1.1.1_3 20 Sep 2013 20:57:49 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
multimedia) |
1.1.1_3 14 Aug 2013 22:35:54 |
ak |
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery) |
1.1.1_3 19 Jul 2012 20:15:39 |
naddy |
libogg.so.8: Bump PORTREVISION for ports that depend on libogg,
directly or indirectly (via libvorbis, libtheora). |
1.1.1_2 23 Sep 2011 22:26:39 |
amdmi3 |
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead
PR: 157936
Submitted by: myself
Exp-runs by: pav
Approved by: pav |
1.1.1_2 03 Jul 2011 13:38:45 |
ohauer |
- remove MD5 |
1.1.1_2 04 Dec 2010 07:34:27 |
ade |
Sync to new bsd.autotools.mk |
1.1.1_2 06 Jun 2010 20:44:03 |
naddy |
Bump PORTREVISION for ports that depend on libogg, directly or indirectly
(via libvorbis, libtheora). |
1.1.1_1 29 Dec 2009 22:30:01 |
ahze |
Don't link to compat
PR: ports/142034
Submitted by: amdmi3 |
1.1.1 21 Dec 2009 03:00:51 |
ahze |
Update to 1.1.1
PR: ports/140919
Submitted by: Gea-Suan Lin <gslin@gslin.org> |
1.0_1 02 Aug 2009 19:36:34 |
mezz |
-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 |
1.0_1 06 Jul 2009 21:26:00 |
naddy |
Bump PORTREVISION after libogg and libvorbisfile major version increment. |
1.0 30 Mar 2009 22:10:53 |
pav |
- Update to 1.0 release
PR: ports/132084
Submitted by: Marcin Cieslak <saper@SYSTEM.PL> |
1.0.b2 24 Mar 2009 16:58:56 |
mm |
- Add MAKE_JOBS_SAFE to support SMP compilation |
1.0.b2 29 Feb 2008 14:04:44 |
ahze |
Update to 1.0beta2
PR: ports/121125
Submitted by: Marcin Cieslak <saper@system.pl> |
1.0.a8 09 Oct 2007 18:18:20 |
ahze |
- Update to 1.0alpha8
- Use USE_GNOME=ltverhack so we won't have unnecessary lib version bumps |
1.0.a7_1 09 Oct 2007 17:41:39 |
ahze |
Adopt for multimedia@ |
1.0.a7_1 28 Jul 2007 12:27:31 |
miwi |
- Chase increase of audio/libvorbis shlib version.
- Bump PORTREVISION |
1.0.a7 18 Jul 2007 08:33:31 |
kevlo |
There is no need to replace pthread in examples/Makefile.in |
1.0.a7 29 Jun 2007 19:33:25 |
linimon |
Reset rainer.alves@gmail.com by request due to current lack of time to
work on FreeBSD. |
1.0.a7 19 Dec 2006 19:40:11 |
lofi |
Those who would give up essential linkability to purchase a little plat-
form specific optimization, ...
(Disable asm code, thus make compilable with gcc 2.95 on 4.x so C++
programs on 4.x can link to the shared library). |
1.0.a7 21 Sep 2006 08:07:59 |
stas |
- Fix SDL-dependent ports broken by last update.
Approved by: kris (portmgr), sem (mentor) |
1.0.a7 13 Sep 2006 06:55:05 |
miwi |
- Update to 1.0a7
PR: ports/102435
Submitted by: Raaf <raaf(at)luna.afraid.org>
Approved by: maintainer timeout |
1.0.a6 29 Jun 2006 19:27:59 |
stefan |
Add USE_GCC=3.4+ to make it compile on 4.x.
PR: 99600
Submitted by: Sven Berkvens-Matthijsse <sven@ilse.net>
Approved by: maintainer
arved (mentor) |
1.0.a6 27 Jun 2006 05:05:40 |
stefan |
Update to 1.0alpha6.
PR: 99131
Submitted by: Rainer Alves <rainer.alves@gmail.com> (maintainer)
Approved by: arved (mentor) |
1.0.a5 07 May 2006 02:56:52 |
mnag |
- Update to 1.0alpha5
- Take maintainership
PR: 95863
Submitted by: maintainer |
1.0.a4_1 14 Apr 2006 23:25:09 |
linimon |
Reset kwm due to no response about email.
Hat: portmgr |
1.0.a4_1 23 Feb 2006 10:40:45 |
ade |
Conversion to a single libtool environment.
Approved by: portmgr (kris) |
1.0.a4 22 Jan 2006 21:19:42 |
edwin |
SHA256ify
Approved by: krion@ |
1.0.a4 15 Nov 2005 06:52:12 |
ade |
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. |
1.0.a4 13 Jan 2005 21:48:19 |
kwm |
Change CATAGORIES after repocopy.
Add another pointyhat to my still fresh collection.
Noticed by: pav |
1.0.a4 13 Jan 2005 19:00:03 |
kwm |
Finish repocopy from graphics to multimedia.
Update to alpha4, based on [1]
PR: 75961 [1]
Submitted by: Stefan Walter sw AT gegenunendlich dot de
Repocopyed by: marcus |