Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.5.1_8 27 Feb 2024 03:12:50 |
Joel Bodenmann (jbo) Author: Lexi Winter |
multimedia/libmpeg2: Add missing license information
PR: 277017
Approved by: tcberner (mentor), portmgr (blanket) |
0.5.1_7 30 Jan 2024 22:35:54 |
Muhammad Moinur Rahman (bofh) |
multimedia/libmpeg2: Moved man to share/man
Approved by: portmgr (blanket) |
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) |
0.5.1_6 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 ) |
0.5.1_6 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 ) |
0.5.1_6 16 Nov 2021 12:03:41 |
Piotr Kubaj (pkubaj) |
multimedia/libmpeg2: fix build on powerpc
AltiVec code is broken on powerpc:
motion_comp_altivec.c:48:12: warning: implicit declaration of function 'vec_ld'
is invalid in C99 [-Wimplicit-function-declaration]
return vec_ld (A, (uint8_t *)B);
^
motion_comp_altivec.c:48:34: warning: cast from 'const unsigned char *' to
'unsigned char *' drops const qualifier [-Wcast-qual]
return vec_ld (A, (uint8_t *)B);
^
motion_comp_altivec.c:48:12: error: returning 'int' from a function with
incompatible result type 'vector_u8_t' (vector of 16 'unsigned char' values)
return vec_ld (A, (uint8_t *)B); |
0.5.1_6 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
0.5.1_6 14 Nov 2019 12:39:42 |
tobik |
Add USES={gl,gnome,mate,sdl,xorg} missed in the last round |
0.5.1_6 02 Mar 2019 21:33:55 |
jbeich |
multimedia/libmpeg2: unbreak on armv7
ld: error: can't create dynamic relocation R_ARM_ABS32 against local symbol in
readonly segment; recompile object files with -fPIC or pass '-Wl,-z,notext' to
allow text relocations in the output
>>> defined in ./.libs/libmpeg2arch.a(motion_comp_arm_s.o)
>>> referenced by motion_comp_arm_s.o:(.text+0x104) in archive
./.libs/libmpeg2arch.a
Reported by: pkg-fallout |
0.5.1_6 05 Feb 2019 14:18:22 |
amdmi3 |
- Convert USE_SDL=yes to USE_SDL=sdl
- Add missing X11 depends (revision not bumped as X11 is disabled by default)
- Switch to options helpers
- Silence stripping
Approved by: portmgr blanket |
0.5.1_6 01 Feb 2015 20:24:28 |
amdmi3 |
- Drop @dirrm* from and add empty directories to pkg-plists
Approved by: portmgr blanket |
0.5.1_6 27 Aug 2014 20:42:26 |
amdmi3 |
- Drop .la files, no dependees require them
Approved by: portmgr blanket |
0.5.1_5 05 May 2014 09:45:37 |
bapt |
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 |
0.5.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 ) |
0.5.1_4 15 Mar 2014 12:27:11 |
danfe |
When setting USE_XORG via OPTION helper, use comma syntax universally; in
`devel/sdl12', `graphics/blender', and `multimedia/libav' ports they were
set incorrectly, which caused build failures of `devel/sdl12' without the
OpenGL, for example.
Also, while at it, in `multimedia/libmpeg2', fix sed(1) based patching to
produce more neat results, and use official spelling of MPEG abbreviation
in COMMENT (port description still needs cleaning up). |
0.5.1_4 02 Mar 2014 22:37:24 |
bapt |
Convert to USES=libtool |
0.5.1_3 20 Oct 2013 10:55:11 |
antoine |
Finish staging (add man pages to plist)
Fix a typo
Approved by: multimedia (bapt) |
0.5.1_2 19 Oct 2013 14:29:20 |
bapt |
Enable stage
Use options helpers
Strip binaries |
0.5.1_1 20 Sep 2013 20:57:49 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
multimedia) |
0.5.1_1 14 Aug 2013 22:35:54 |
ak |
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery) |
0.5.1_1 25 Mar 2013 14:05:24 |
makc |
- Add dependence on X libraries [1] and make it optional
- Convert to new option framework
- Convert to USES
- Trim Makefile header
- pet portlint: rename patch
PR: ports/175965 [1]
Submitted by: pawel |
0.5.1_1 18 Feb 2012 10:18:33 |
mva |
- Update devel/sdl12 to 1.2.15
- Update audio/sdl_mixer to 1.2.15
- Update graphics/sdl_image to 1.2.12
- Update graphics/sdl_ttf to 2.0.11
- Update graphics/sdl_gfx to 2.0.23
- Update net/sdl_net to 1.2.8
- Bump PORTREVISIONs on ports that depend on one or more packages due to
ABI and shared library version changes
- Update Mk/bsd.sdl.mk accordingly for the new shared library versions
Tested by: exp-run by pav |
0.5.1 11 Aug 2011 19:20:17 |
kwm |
Remove USE_GNOME=gnometarget from ports. It has been a empty keyword since
mid 2008.
PR: ports/159624
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> |
0.5.1 03 Jul 2011 13:38:45 |
ohauer |
- remove MD5 |
0.5.1 04 Dec 2010 07:34:27 |
ade |
Sync to new bsd.autotools.mk |
0.5.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 |
0.5.1 26 Mar 2009 03:16:55 |
lioux |
Mark MAKE_JOBS_SAFE for SMP compilation |
0.5.1 27 Jul 2008 01:47:22 |
ahze |
Update to 0.5.1 |
0.4.1_4 19 Apr 2008 17:56:05 |
miwi |
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav) |
0.4.1_3 13 Mar 2008 14:28:35 |
miwi |
- Chase devel/sdl12 shlib version bump |
0.4.1_2 19 Sep 2007 17:57:17 |
ahze |
- Remove a no longer supported option
- Install README |
0.4.1_1 19 May 2007 20:32:57 |
flz |
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}. |
0.4.1 01 Apr 2007 07:50:30 |
lioux |
Give maintainership to multimedia@FreeBSD.org. |
0.4.1 15 Dec 2006 01:53:30 |
lioux |
o Update to bug fix release 0.4.1:
- The build system now supports newer versions of the
autotools and can find them in weird places on FreeBSD
and OS X systems. We also support x86 accelerations on
the AMD64 CPU, including on FreeBSD. The AltiVec features
are now better detected.
- Peter Gubanov found a bug in the 4:4:4 chroma handling,
Nicolas Joly found a memory leak in the Xshm code on
remote displays and Roberto Huelga found alignment issues
in the sample3 and sample5 examples. Gildas Bazin contributed
a patch for more tolerance for invalid sequence display
extensions.
PR: 106144
Submitted by: KATO Tsuguru <tkato432@yahoo.com> |
0.4.0b_3 21 Sep 2006 08:07:59 |
stas |
- Fix SDL-dependent ports broken by last update.
Approved by: kris (portmgr), sem (mentor) |
0.4.0b_3 20 Sep 2006 11:21:59 |
stas |
- Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directory
structure (i.e. include/SDL for includes and sdl-config for configuration
binary)
- Update graphics/sdl_ttf to version 2.0.8
- Update graphics/sdl_image to version 1.2.5
- Update audio/sdl_mixer to version 1.2.7
- Update net/sdl_net to version 1.2.6
- Update Mk/bsd.sdl.mk accordingly
- Fix dependent ports to fit the new directory structure and avoid several
API breakages
- Bump up portrevisions for all dependent ports to allow them to be upgraded
by portupgrade/portmaster etc tools
Approved by: kris (portmgr), sem (mentor) |
0.4.0b_2 10 May 2006 22:37:39 |
edwin |
Remove USE_REINPLACE from ports starting with M |
0.4.0b_2 23 Feb 2006 10:40:45 |
ade |
Conversion to a single libtool environment.
Approved by: portmgr (kris) |
0.4.0b_1 18 Nov 2005 04:18:47 |
lioux |
Fix build WITH_SDL on some systems
PR: 88869
Submitted by: Stephen Hurd <shurd@sasktel.net> |
0.4.0b_1 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. |
0.4.0b_1 11 Nov 2005 06:06:17 |
lioux |
Add SHA256 checksum |
0.4.0b_1 16 May 2005 21:52:58 |
pav |
- libdata/pkgconfig is now included in mtree
Approved by: marcus (portmgr hat) |
0.4.0b_1 17 Apr 2005 19:59:11 |
lioux |
Remove BROKEN on alpha ARCH
PR: 77869
Submitted by: Geoff Buckingham <geoffb@chuggalug.clues.com>
Verified by: kwm |
0.4.0b_1 11 Apr 2005 17:53:17 |
adamw |
De-obrienize: move ${ARCH} conditional expression to after bsd.port.pre.mk. |
0.4.0b_1 11 Apr 2005 08:04:41 |
obrien |
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'. |
0.4.0b_1 09 Jul 2004 17:43:11 |
marcus |
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 |
0.4.0b_1 08 Apr 2004 03:19:14 |
lioux |
Bump PORTREVISION due to PLIST change in previous commit |
0.4.0b 08 Apr 2004 03:17:46 |
lioux |
o Uphold portlint by moving WRKSRC out of the 1st Makefile block
o USE_GNOME=lthack to avoid installing .la files which incidently
makes the port ccache friendly
PR: 65285
Submitted by: michael johnson <ahze@ahze.net> |
0.4.0b 06 Apr 2004 00:22:05 |
lioux |
Update to 0.4.0b
PR: 63439
Submitted by: lev |
0.3.1_1 19 Mar 2004 15:59:58 |
krion |
- Utilize USE_SDL to prevent libraries chase in the future |
0.3.1_1 19 Mar 2004 15:39:52 |
kan |
Unbreak dependency on SDL in WITH_SDL=yes case. Look for proper
libSDL-1.1.so instead of libSDL-1.1.5.so. |
0.3.1_1 14 Mar 2004 06:17:56 |
ade |
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. |
0.3.1_1 25 Feb 2004 10:30:56 |
kris |
BROKEN on alpha 5.x: does not compile |
0.3.1_1 10 Feb 2004 16:17:40 |
arved |
Fix build on AMD64
Submitted by: lioux, Adriaan de Groot <adridg@cs.kun.nl> |
0.3.1_1 08 Feb 2004 01:14:05 |
lioux |
USE_SIZEify |
0.3.1_1 08 Sep 2003 00:54:07 |
lioux |
Fix build on alpha ARCH machines that do not support MVI code. Check
PR for more information
PR: 48506
Submitted by: naddy |
0.3.1_1 19 May 2003 05:09:18 |
edwin |
Added INSTALLS_SHLIB
Informed maintainer. |
0.3.1_1 14 May 2003 16:20:58 |
lioux |
Fix build on alpha ARCH |
0.3.1_1 11 May 2003 07:47:18 |
dinoex |
- allow build with more warnings enabled, NO_WERROR=yes
- no response from maintainer since 2003-04-05 |
0.3.1_1 23 Feb 2003 19:58:35 |
lioux |
De-pkg-comment |
0.3.1_1 14 Jan 2003 15:54:22 |
lioux |
o Fix PLIST
o Bump PORTREVISION
Submitted by: kris (internal bento logs) |
0.3.1 02 Jan 2003 15:06:10 |
sobomax |
Update version number of SDL shared library. |
0.3.1 02 Jan 2003 05:03:52 |
lioux |
Update to 0.3.1 |
0.2.1_1 28 Nov 2002 00:09:51 |
lioux |
After repo copy from graphics category, update all appropriate
references from graphics to multimedia category
Repo copied by: joe (cvs hat)
Approved by: knu (portmgr hat) |