aboutsummaryrefslogtreecommitdiff
path: root/multimedia/smpeg2
Commit message (Collapse)AuthorAgeFilesLines
* multimedia: Add missing USES={gl,gnome,sdl,xorg}Tobias Kortkamp2019-11-081-1/+1
| | | | Notes: svn path=/head/; revision=517065
* Update MASTER_SITES and WWWSunpoet Po-Chuan Hsieh2019-04-212-3/+3
| | | | Notes: svn path=/head/; revision=499586
* multimedia/smpeg2: unbreak build with Clang 6 (C++14 by default)Jan Beich2018-01-051-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | audio/hufftable.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}, ^~~ audio/hufftable.cpp:553:8: note: insert an explicit cast to silence this issue { 0, 0-1, 0-1, 0, 0, htd33}, ^~~ static_cast<unsigned int>( ) audio/hufftable.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}, ^~~ audio/hufftable.cpp:553:13: note: insert an explicit cast to silence this issue { 0, 0-1, 0-1, 0, 0, htd33}, ^~~ static_cast<unsigned int>( ) audio/hufftable.cpp:557:8: error: constant expression evaluates to -1 which cannot be narrowed to type 'unsigned int' [-Wc++11-narrowing] { 4, 0-1, 0-1, 0, 0, htd33}, ^~~ audio/hufftable.cpp:557:8: note: insert an explicit cast to silence this issue { 4, 0-1, 0-1, 0, 0, htd33}, ^~~ static_cast<unsigned int>( ) audio/hufftable.cpp:557:13: error: constant expression evaluates to -1 which cannot be narrowed to type 'unsigned int' [-Wc++11-narrowing] { 4, 0-1, 0-1, 0, 0, htd33}, ^~~ audio/hufftable.cpp:557:13: note: insert an explicit cast to silence this issue { 4, 0-1, 0-1, 0, 0, htd33}, ^~~ static_cast<unsigned int>( ) audio/hufftable.cpp:567:8: error: constant expression evaluates to -1 which cannot be narrowed to type 'unsigned int' [-Wc++11-narrowing] {14, 0-1, 0-1, 0, 0, htd33}, ^~~ audio/hufftable.cpp:567:8: note: insert an explicit cast to silence this issue {14, 0-1, 0-1, 0, 0, htd33}, ^~~ static_cast<unsigned int>( ) audio/hufftable.cpp:567:13: error: constant expression evaluates to -1 which cannot be narrowed to type 'unsigned int' [-Wc++11-narrowing] {14, 0-1, 0-1, 0, 0, htd33}, ^~~ audio/hufftable.cpp:567:13: note: insert an explicit cast to silence this issue {14, 0-1, 0-1, 0, 0, htd33}, ^~~ static_cast<unsigned int>( ) Reported by: antoine (via bug 224669) Obtained from: r458130 Notes: svn path=/head/; revision=458131
* multimedia/smpeg2: clarify license and use option helpersJan Beich2016-10-041-9/+5
| | | | Notes: svn path=/head/; revision=423272
* Fix minor typos in pkg-descr files.Jimmy Olgeni2015-03-221-1/+1
| | | | Notes: svn path=/head/; revision=381910
* Reset maintainer, connections to SMTP server time outAntoine Brodin2015-03-051-1/+1
| | | | Notes: svn path=/head/; revision=380493
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-02-011-1/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=378270
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* - Convert multimedia/smpeg* to USES=libtool and bump dependent portsTijl Coosemans2014-07-153-15/+5
| | | | | | | - Add INSTALL_TARGET=install-strip Notes: svn path=/head/; revision=361996
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-07-032-2/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=360334
* - Update maintainer emailAlex Kozlov2013-11-231-1/+1
| | | | | | | | PR: ports/184189 Submitted by: Vladimir Kondratiev <wulf@mail.mipt.ru> (maintainer) Notes: svn path=/head/; revision=334671
* - Switch devel/sdl20 to use the autotools-based configuration, since theMarcus von Appen2013-11-171-0/+1
| | | | | | | | | | | | | | cmake-based one is not maintained that well - Fix library naming to ensure backwards compatibility on minor version changes - Bump the PORTREVISION on ports depending on devel/sdl20, since its shared library name changed PR: ports/183975 Submitted by: Jan Kokemüller <jan.kokemueller@gmail.com> Notes: svn path=/head/; revision=334079
* Version 2 of the smpeg library.Marcus von Appen2013-11-125-0/+85
SMPEG is a free MPEG1 video player library with sound support. Video playback is based on the ubiquitous Berkeley MPEG player, mpeg_play v2.2. Audio is played through a slightly modified mpegsound library, part of Splay v0.8.2. SMPEG supports MPEG audio (MP3), MPEG-1 video, and MPEG system streams. plaympeg is simple video players provided to test the library. The C library interface is 'documented' in smpeg.h, and the C++ library interface is spread out over the MPEG*.h files. This is a work in progress. Only 16 or 32 bit color depth is supported. The player will dynamically conver to other color depths, but playback will be much faster if your display is already set to 16 bit color depth. WWW: http://icculus.org/smpeg/ PR: ports/183360 Submitted by: Vladimir Kondratiev <wulf@corp.infotel.ru> Notes: svn path=/head/; revision=333613