Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.4.4_18 27 Jan 2024 23:07:07
    |
Muhammad Moinur Rahman (bofh)  |
multimedia/smpeg: Moved man to share/man
Approved by: portmgr (blanket) |
0.4.4_17 18 May 2023 11:34:31
    |
Dimitry Andric (dim)  |
multimedia/smpeg: fix build with clang 16
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because multimedia/smpeg's configure scripts and Makefiles do not
explicitly set the C++ standard, this leads to several errors:
In file included from MPEGaudio.cpp:24:
../MPEGaudio.h:129:7: error: ISO C++17 does not allow 'register' storage class
specifier [-Wregister]
register int r=(buffer[bitindex>>3]>>(7-(bitindex&7)))&1;
^~~~~~~~~
../MPEGaudio.h:135:7: error: ISO C++17 does not allow 'register' storage class
specifier [-Wregister]
register unsigned short a;
^~~~~~~~~
MPEGaudio.cpp:317:3: error: ISO C++17 does not allow 'register' storage class
specifier [-Wregister]
register int r=(_buffer[bitindex>>3]>>(7-(bitindex&7)))&1; (Only the first 15 lines of the commit message are shown above ) |
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.4.4_16 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.4.4_16 26 Aug 2022 12:00:33
    |
Baptiste Daroussin (bapt)  |
sunsite.auc.dk: remove dead mirror |
0.4.4_16 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.4.4_16 18 Jun 2022 06:28:04
    |
Jose Alonso Cardenas Marquez (acm)  |
multimedia/smpeg: Revert configure patch file
* Commit 87624aab for PR #231524 has accidentally introduced two
additional patches to the configure script, breaking parts of
its workings. Revert these changes to fix the configuration.
* Bump PORTREVISION
PR: 263023
Reported by: Robert Clausecker <fuz _at_ fuz.su> |
0.4.4_15 29 May 2021 14:08:18
    |
Dimitry Andric (dim)  |
multimedia/smpeg: fix incorrect warning suppression flag.
During an exp-run for llvm 12 (see bug 255570), it turned out that
multimedia/smpeg does not build with clang 12.0.0:
libtool: compile: c++ -DPACKAGE=\"smpeg\" -DVERSION=\"0.4.4\" -I. -I. -O2 -pipe
-Wno-error-narrowing -fstack-protector-strong -fno-strict-aliasing
-I/usr/local/include/SDL -I/usr/local/include -D_REENTRANT -D_THREAD_SAFE
-DTHREADED_AUDIO -DNDEBUG -I.. -DNOCONTROLS -I.. -I../audio -I../video
-fno-exceptions -fno-rtti -c huffmantable.cpp -fPIC -DPIC -o
.libs/huffmantable.o
warning: unknown -Werror warning specifier: '-Wno-error-narrowing'
[-Wunknown-warning-option]
In file included from huffmantable.cpp:12:
../MPEGaudio.h:129:7: warning: 'register' storage class specifier is deprecated
and incompatible with C++17 [-Wdeprecated-register]
register int r=(buffer[bitindex>>3]>>(7-(bitindex&7)))&1;
^~~~~~~~~
../MPEGaudio.h:135:7: warning: 'register' storage class specifier is deprecated
and incompatible with C++17 [-Wdeprecated-register]
register unsigned short a;
^~~~~~~~~
huffmantable.cpp:553:8: error: constant expression evaluates to -1 which cannot
be narrowed to type 'unsigned int' [-Wc++11-narrowing] (Only the first 15 lines of the commit message are shown above ) |
0.4.4_15 06 Apr 2021 14:31:07
    |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
0.4.4_15 08 Nov 2019 13:59:51
  |
tobik  |
multimedia: Add missing USES={gl,gnome,sdl,xorg} |
0.4.4_15 27 Nov 2018 16:14:39
  |
linimon  |
Base gcc doesn't support -Wno-error-narrowing flag. Add it only when
the compiler used is Clang.
PR: 233407
Submitted by: Piotr Kubaj
Approved by: portmgr (tier-2 blanket) |
0.4.4_15 20 Nov 2018 18:03:13
  |
acm  |
- Fix LLD for i386
- Correct order variables, while here
- Regenerate patches with makepatch
- Bump PORTREVISION
PR: 231524
Submitted by: Nathan <ndowens _at_ yahoo.com> |
0.4.4_14 05 Jan 2018 11:56:54
  |
jbeich  |
multimedia/smpeg: unbreak build with Clang 6 (C++14 by default)
huffmantable.cpp:553:8: error: constant expression evaluates to -1 which cannot
be narrowed to type
'unsigned int' [-Wc++11-narrowing]
{ 0, 0-1, 0-1, 0, 0, htd33},
^~~
huffmantable.cpp:553:8: note: insert an explicit cast to silence this issue
{ 0, 0-1, 0-1, 0, 0, htd33},
^~~
static_cast<unsigned int>( )
huffmantable.cpp:553:13: error: constant expression evaluates to -1 which cannot
be narrowed to type
'unsigned int' [-Wc++11-narrowing]
{ 0, 0-1, 0-1, 0, 0, htd33},
^~~
huffmantable.cpp:553:13: note: insert an explicit cast to silence this issue (Only the first 15 lines of the commit message are shown above ) |
0.4.4_14 22 May 2015 20:34:29
  |
mat  |
Remove $FreeBSD$ from patches files everywhere.
With hat: portmgr
Sponsored by: Absolight |
0.4.4_14 14 May 2015 10:15:09
  |
mat  |
MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight |
0.4.4_14 15 Dec 2014 13:58:21
  |
amdmi3  |
- Simplify MASTER_SITES
- Add LICENSE
- Strip library (INSTALL_TARGET=install-strip wasn't working)
- Drop @dirrm* from plist
Approved by: bapt |
0.4.4_14 08 Dec 2014 16:48:41
  |
tijl  |
Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla in
the 32 ports that still use it. Bump PORTREVISION on their dependent
ports except the ones that depend on these:
audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt
In these cases the same trick as in the recent gettext update is used. (Only the first 15 lines of the commit message are shown above ) |
0.4.4_13 10 Sep 2014 20:50:37
  |
gerald  |
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit) |
0.4.4_12 29 Jul 2014 17:12:50
  |
adamw  |
Rename all patches that contain '::' as a path separator, and use
'__' instead. |
0.4.4_12 29 Jul 2014 01:31:13
  |
adamw  |
Rename multimedia/ patch-xy patches to reflect the files they modify. |
0.4.4_12 15 Jul 2014 18:58:59
  |
tijl  |
- Convert multimedia/smpeg* to USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip |
0.4.4_11 07 Mar 2014 11:27:01
  |
amdmi3  |
- Fix smpeg.m4 to remove annoying warning (warning: underquoted definition of
AM_PATH_SMPEG) on each autotools invocation
PR: 186765
Submitted by: amdmi3
Approved by: maintainer timeout |
0.4.4_10 02 Feb 2014 16:03:27
  |
miwi  |
- Stage support |
0.4.4_10 20 Sep 2013 20:57:49
  |
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
multimedia) |
0.4.4_10 09 Jul 2013 22:27:55
  |
wg  |
multimedia/smpeg: fix build and minor fixes
- Add SDL_CONFIG to env
- Remove leading article from COMMENT
- Trim Makefile header
- Remove GTK Player, version is too old
PR: ports/179969
Submitted by: wg (myself)
Approved by: maintainer (timeout) |
0.4.4_9 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.4.4_8 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 |
0.4.4_8 09 Sep 2011 03:33:07
 |
amdmi3  |
- Fix build with clang
PR: 159270
Submitted by: myself
Approved by: acm (maintainer via private email) |
0.4.4_8 03 Jul 2011 13:38:45
 |
ohauer  |
- remove MD5 |
0.4.4_8 04 Dec 2010 07:34:27
 |
ade  |
Sync to new bsd.autotools.mk |
0.4.4_8 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.4.4_8 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.4_8 13 Mar 2008 14:28:35
 |
miwi  |
- Chase devel/sdl12 shlib version bump |
0.4.4_7 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.4_6 20 Mar 2007 19:34:21
 |
acm  |
- Fix build with gcc4.x
Reported by : Kris
Obtained from : NetBSD |
0.4.4_6 01 Feb 2007 02:42:06
 |
kris  |
Use libtool port instead of included version to avoid objformat a.out botch |
0.4.4_6 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.4_5 23 Jul 2006 02:45:24
 |
acm  |
Change maintainer address to my @FreeBSD.org email
Approved by: garga (mentor) |
0.4.4_5 28 Apr 2006 04:02:39
 |
mnag  |
- Fix wrong plist
- portlint(1)
PR: 96394
Submitted by: maintainer |
0.4.4_4 23 Feb 2006 10:40:45
 |
ade  |
Conversion to a single libtool environment.
Approved by: portmgr (kris) |
0.4.4_3 23 Nov 2005 12:33:34
 |
flz  |
- Fix fetch issues by removing stale mirrors and adding MASTER_SITE_GENTOO to
MASTER_SITES.
- Pass maintainership to submitter.
- Add SHA256 checksum.
PR: ports/89189
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> |
0.4.4_3 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.4_3 02 Jun 2005 20:28:41
 |
oliver  |
change the libtool version to use from 1.3 to 1.5 |
0.4.4_3 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.4_3 16 Mar 2004 04:23:56
 |
edwin  |
Chase library bump of libSDL-1.1 for all ports which were depending
on sdl12-1.2.5 |
0.4.4_2 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.4.4_2 08 Feb 2004 22:41:29
 |
krion  |
- Fix build on AMD64 |
0.4.4_2 05 Feb 2004 22:04:24
 |
ale  |
Fix PLIST generation.
Approved by: nork (mentor/implicitly) |
0.4.4_2 04 Feb 2004 05:10:27
 |
marcus  |
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 1) |
0.4.4_1 29 Jan 2004 16:13:06
 |
trevor  |
SIZEify. |
0.4.4_1 23 Jan 2004 21:59:42
 |
edwin  |
Use USE_SDL macros in these ports. |
0.4.4_1 02 Oct 2003 12:42:16
 |
roam  |
Use USE_SDL.
PR: 57481
Submitted by: Thierry Thomas <thierry@pompo.net> |
0.4.4 15 Jul 2003 06:21:44
 |
daichi  |
update multimedia/smpeg:
- add WITHOUT_GUI knob to multimedia/smpeg
PR: 54304
Submitted by: Josh Elsasser <jre@vineyard.net>
Pointed out by: KATO Tsuguru <tkato@prontomail.com> |
0.4.4 20 Apr 2003 19:35:03
 |
marcus  |
Remove USE_GNOMENG. |
0.4.4 04 Apr 2003 01:38:40
 |
lioux  |
After repo copy from graphics category to newly create multimedia
one, update all appropriate references: *_DEPENDS, CATEGORIES
Repo copied by: cvs (joe)
Approved by: portmgr (self & no objections) |