non port: multimedia/libtheora/Makefile |
SVNWeb
|
Number of commits found: 46 |
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) ] 63f36d3 (Only the first 10 of 224 ports in this commit are shown above. )
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 )
|
Thu, 10 Jun 2021
|
[ 13:48 Christian Weisgerber (naddy) ] dcf17d1 (Only the first 10 of 14 ports in this commit are shown above. )
*/*: 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
|
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.
|
Thu, 25 Oct 2018
|
[ 09:30 amdmi3 ]
- Switch to USES=localbase
- Add testing support
- Update WWW
Approved by: portmgr blanket
|
Tue, 27 Feb 2018
|
[ 13:03 mat ] (Only the first 10 of 26 ports in this commit are shown above. )
Switch some MASTER_SITES from http/ftp to https.
Also some cleanup of dead entries.
PR: 226203
Submitted by: Sam H
Sponsored by: Absolight
|
Fri, 9 Dec 2016
|
[ 12:57 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)
|
Thu, 8 Dec 2016
|
[ 15:38 tijl ] (Only the first 10 of 31 ports in this commit are shown above. )
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.
|
Fri, 21 Oct 2016
|
[ 15:21 mat ] (Only the first 10 of 354 ports in this commit are shown above. )
Use USES=pathfix where applicable.
PR: 213195
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D8093
|
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
|
Thu, 8 Oct 2015
|
[ 15:12 olgeni ] (Only the first 10 of 83 ports in this commit are shown above. )
Remove trailing whitespace from Makefiles, M-X.
|
Fri, 19 Sep 2014
|
[ 13:46 tijl ]
Drop .la files and add INSTALL_TARGET=install-strip
|
Tue, 29 Jul 2014
|
[ 18:41 adamw ] (Only the first 10 of 426 ports in this commit are shown above. )
Convert a bunch of USE_BZIP2 to USES=tar:bzip2
Approved by: portmgr (not really, but touches unstaged ports)
|
Wed, 11 Jun 2014
|
[ 14:50 tijl ] (Only the first 10 of 297 ports in this commit are shown above. )
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 )
|
Wed, 23 Apr 2014
|
[ 13:25 tijl ] (Only the first 10 of 462 ports in this commit are shown above. )
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 )
|
Sun, 2 Mar 2014
|
[ 22:40 bapt ]
Convert to USES=libtool
|
Tue, 24 Sep 2013
|
[ 06:24 bapt ] (Only the first 10 of 61 ports in this commit are shown above. )
Remove NO_STAGE to ports natively stage ready shown by a FORCE_STAGE exp-run
Exp-run by: bdrewery
|
Fri, 20 Sep 2013
|
[ 20:57 bapt ] (Only the first 10 of 404 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
multimedia)
|
Wed, 14 Aug 2013
|
[ 22:35 ak ] (Only the first 10 of 1725 ports in this commit are shown above. )
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery)
|
Thu, 19 Jul 2012
|
[ 20:15 naddy ] (Only the first 10 of 187 ports in this commit are shown above. )
libogg.so.8: Bump PORTREVISION for ports that depend on libogg,
directly or indirectly (via libvorbis, libtheora).
|
Fri, 23 Sep 2011
|
[ 22:26 amdmi3 ] (Only the first 10 of 2369 ports in this commit are shown above. )
- 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
|
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
|
Sun, 6 Jun 2010
|
[ 20:44 naddy ] (Only the first 10 of 174 ports in this commit are shown above. )
Bump PORTREVISION for ports that depend on libogg, directly or indirectly
(via libvorbis, libtheora).
|
Tue, 29 Dec 2009
|
[ 22:30 ahze ]
Don't link to compat
PR: ports/142034
Submitted by: amdmi3
|
Mon, 21 Dec 2009
|
[ 03:00 ahze ]
Update to 1.1.1
PR: ports/140919
Submitted by: Gea-Suan Lin <gslin@gslin.org>
|
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
|
Mon, 6 Jul 2009
|
[ 21:26 naddy ] (Only the first 10 of 165 ports in this commit are shown above. )
Bump PORTREVISION after libogg and libvorbisfile major version increment.
|
Mon, 30 Mar 2009
|
[ 22:10 pav ]
- Update to 1.0 release
PR: ports/132084
Submitted by: Marcin Cieslak <saper@SYSTEM.PL>
|
Tue, 24 Mar 2009
|
[ 16:58 mm ]
- Add MAKE_JOBS_SAFE to support SMP compilation
|
Fri, 29 Feb 2008
|
[ 14:04 ahze ]
Update to 1.0beta2
PR: ports/121125
Submitted by: Marcin Cieslak <saper@system.pl>
|
Tue, 9 Oct 2007
|
[ 18:18 ahze ]
- Update to 1.0alpha8
- Use USE_GNOME=ltverhack so we won't have unnecessary lib version bumps
|
[ 17:41 ahze ]
Adopt for multimedia@
|
Sat, 28 Jul 2007
|
[ 12:27 miwi ] (Only the first 10 of 128 ports in this commit are shown above. )
- Chase increase of audio/libvorbis shlib version.
- Bump PORTREVISION
|
Wed, 18 Jul 2007
|
[ 08:33 kevlo ]
There is no need to replace pthread in examples/Makefile.in
|
Fri, 29 Jun 2007
|
[ 19:33 linimon ] (Only the first 10 of 23 ports in this commit are shown above. )
Reset rainer.alves@gmail.com by request due to current lack of time to
work on FreeBSD.
|
Tue, 19 Dec 2006
|
[ 19:40 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).
|
Thu, 21 Sep 2006
|
[ 08:07 stas ]
- Fix SDL-dependent ports broken by last update.
Approved by: kris (portmgr), sem (mentor)
|
Wed, 13 Sep 2006
|
[ 06:55 miwi ]
- Update to 1.0a7
PR: ports/102435
Submitted by: Raaf <raaf(at)luna.afraid.org>
Approved by: maintainer timeout
|
Thu, 29 Jun 2006
|
[ 19:27 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)
|
Tue, 27 Jun 2006
|
[ 05:05 stefan ]
Update to 1.0alpha6.
PR: 99131
Submitted by: Rainer Alves <rainer.alves@gmail.com> (maintainer)
Approved by: arved (mentor)
|
Sun, 7 May 2006
|
[ 02:56 mnag ]
- Update to 1.0alpha5
- Take maintainership
PR: 95863
Submitted by: maintainer
|
Fri, 14 Apr 2006
|
[ 23:25 linimon ] (Only the first 10 of 32 ports in this commit are shown above. )
Reset kwm due to no response about email.
Hat: portmgr
|
Thu, 23 Feb 2006
|
[ 10:40 ade ] (Only the first 10 of 2514 ports in this commit are shown above. )
Conversion to a single libtool environment.
Approved by: portmgr (kris)
|
Tue, 15 Nov 2005
|
[ 06:52 ade ] (Only the first 10 of 1438 ports in this commit are shown above. )
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, 13 Jan 2005
|
[ 21:48 kwm ]
Change CATAGORIES after repocopy.
Add another pointyhat to my still fresh collection.
Noticed by: pav
|
[ 19:00 kwm ] (Only the first 10 of 11 ports in this commit are shown above. )
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
|
Number of commits found: 46 |