non port: multimedia/smpeg/Makefile |
SVNWeb
|
Number of commits found: 46 |
Thu, 18 May 2023
|
[ 11:34 Dimitry Andric (dim) ] 967c804
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 )
|
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 )
|
Fri, 26 Aug 2022
|
[ 12:00 Baptiste Daroussin (bapt) ] 51ad083
sunsite.auc.dk: remove dead mirror
|
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 )
|
Sat, 18 Jun 2022
|
[ 06:28 Jose Alonso Cardenas Marquez (acm) ] 907bea9 (Only the first 10 of 17 ports in this commit are shown above. )
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>
|
Sat, 29 May 2021
|
[ 14:08 Dimitry Andric (dim) ] 4fb035a
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 )
|
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.
|
Fri, 8 Nov 2019
|
[ 13:59 tobik ] (Only the first 10 of 44 ports in this commit are shown above. )
multimedia: Add missing USES={gl,gnome,sdl,xorg}
|
Tue, 27 Nov 2018
|
[ 16:14 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)
|
Tue, 20 Nov 2018
|
[ 18:03 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>
|
Fri, 5 Jan 2018
|
[ 11:56 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 )
|
Thu, 14 May 2015
|
[ 10:15 mat ] (Only the first 10 of 1814 ports in this commit are shown above. )
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
|
Mon, 15 Dec 2014
|
[ 13:58 amdmi3 ]
- Simplify MASTER_SITES
- Add LICENSE
- Strip library (INSTALL_TARGET=install-strip wasn't working)
- Drop @dirrm* from plist
Approved by: bapt
|
Mon, 8 Dec 2014
|
[ 16:48 tijl ] (Only the first 10 of 920 ports in this commit are shown above. )
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 )
|
Wed, 10 Sep 2014
|
[ 20:50 gerald ] (Only the first 10 of 3171 ports in this commit are shown above. )
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)
|
Tue, 15 Jul 2014
|
[ 18:58 tijl ] (Only the first 10 of 23 ports in this commit are shown above. )
- Convert multimedia/smpeg* to USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
|
Fri, 7 Mar 2014
|
[ 11:27 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
|
Sun, 2 Feb 2014
|
[ 16:03 miwi ]
- Stage support
|
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)
|
Tue, 9 Jul 2013
|
[ 22:27 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)
|
Sat, 18 Feb 2012
|
[ 10:18 mva ] (Only the first 10 of 537 ports in this commit are shown above. )
- 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
|
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, 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
|
Sat, 19 Apr 2008
|
[ 17:56 miwi ] (Only the first 10 of 2842 ports in this commit are shown above. )
- 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)
|
Thu, 13 Mar 2008
|
[ 14:28 miwi ] (Only the first 10 of 442 ports in this commit are shown above. )
- Chase devel/sdl12 shlib version bump
|
Sat, 19 May 2007
|
[ 20:32 flz ] (Only the first 10 of 7868 ports in this commit are shown above. )
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
|
Tue, 20 Mar 2007
|
[ 19:34 acm ]
- Fix build with gcc4.x
Reported by : Kris
Obtained from : NetBSD
|
Thu, 1 Feb 2007
|
[ 02:42 kris ] (Only the first 10 of 348 ports in this commit are shown above. )
Use libtool port instead of included version to avoid objformat a.out botch
|
Wed, 20 Sep 2006
|
[ 11:21 stas ] (Only the first 10 of 453 ports in this commit are shown above. )
- 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)
|
Sun, 23 Jul 2006
|
[ 02:45 acm ] (Only the first 10 of 71 ports in this commit are shown above. )
Change maintainer address to my @FreeBSD.org email
Approved by: garga (mentor)
|
Fri, 28 Apr 2006
|
[ 04:02 mnag ]
- Fix wrong plist
- portlint(1)
PR: 96394
Submitted by: maintainer
|
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)
|
Wed, 23 Nov 2005
|
[ 12:33 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>
|
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, 2 Jun 2005
|
[ 20:28 oliver ] (Only the first 10 of 60 ports in this commit are shown above. )
change the libtool version to use from 1.3 to 1.5
|
Fri, 9 Jul 2004
|
[ 17:43 marcus ] (Only the first 10 of 489 ports in this commit are shown above. )
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
|
Tue, 16 Mar 2004
|
[ 04:23 edwin ] (Only the first 10 of 193 ports in this commit are shown above. )
Chase library bump of libSDL-1.1 for all ports which were depending
on sdl12-1.2.5
|
Sun, 14 Mar 2004
|
[ 06:17 ade ] (Only the first 10 of 945 ports in this commit are shown above. )
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.
|
Thu, 5 Feb 2004
|
[ 22:04 ale ]
Fix PLIST generation.
Approved by: nork (mentor/implicitly)
|
Wed, 4 Feb 2004
|
[ 05:10 marcus ] (Only the first 10 of 1422 ports in this commit are shown above. )
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 1)
|
Fri, 23 Jan 2004
|
[ 21:59 edwin ]
Use USE_SDL macros in these ports.
|
Thu, 2 Oct 2003
|
[ 12:42 roam ]
Use USE_SDL.
PR: 57481
Submitted by: Thierry Thomas <thierry@pompo.net>
|
Tue, 15 Jul 2003
|
[ 06:21 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>
|
Sun, 20 Apr 2003
|
[ 19:35 marcus ] (Only the first 10 of 31 ports in this commit are shown above. )
Remove USE_GNOMENG.
|
Fri, 4 Apr 2003
|
[ 01:38 lioux ] (Only the first 10 of 38 ports in this commit are shown above. )
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)
|
Number of commits found: 46 |