aboutsummaryrefslogtreecommitdiff
path: root/multimedia/k9copy-kde4
Commit message (Collapse)AuthorAgeFilesLines
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* multimedia/k9copy-kde4 : fix 'abs is ambiguousTobias C. Berner2016-11-281-0/+25
| | | | | | | | | | | Work around the call to abs() being ambigous by simply calculating the absolute value in place. PR: 214640 Approved by: just fix it, rakuco (mentor) Notes: svn path=/head/; revision=427345
* Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks andTobias C. Berner2016-08-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plasma5 ports At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When working on the ports for KDE Frameworks and Plasma5 it seemed to be more reasonable to create a new kde.mk instead of adding an bsd.kde5.mk. The kde.mk in this review is a stripped down version of the one we are using in the KDE Test repositories plasma5 branch [1] to only contain the parts relevant to the current KDE4 ports in the portstree [2]. Changes to the KDE Ports needed by this: Replace USE_KDE4 by USE_KDE [3] Add USES=kde:4 [4] [1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk [2] The version in the plasma5 branch also handles frameworks/plasma5 and handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt Ports -- I chose to leave this out for now, as the diff is already large enough. [3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we want is already specified as argument to kde:<arg> [4] For KDE Frameworks and Plasma5 ports this would be kde:5 PR: 210667 Approved by: portmgr, mat (mentor), rakuco (mentor) Reviewed by: mat, rakuco Differential Revision: https://reviews.freebsd.org/D6961 Notes: svn path=/head/; revision=420774
* Remove expired misc/kdehier4 and update all of its consumers to not ↵Rene Ladan2016-05-251-1/+1
| | | | | | | | | | | | | | | | reference it any longer. This is a no-op because KDE4_PREFIX is equal to LOCALBASE Fix up properties for misc/kde4-l10n/files/bsd.l10n.mk to make svn happy. PR: 209014 (partial) Submitted by: myself Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D6542 Notes: svn path=/head/; revision=415864
* Convert tab after WWW: in pkg-descrs to single space as per PHBDmitry Marakasov2016-05-231-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415738
* - Fix trailing whitespace in pkg-descrs, categories [g-n]*Dmitry Marakasov2016-05-191-2/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415499
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-6/+6
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Fix the build with the upcoming CMake 3.4.0.Raphael Kubo da Costa2015-11-263-10/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is not clear if this is intentional or not, but with CMake 3.4.0 environment variables such as CXXFLAGS are passed to the compiler after the directories added via the include_directories() command. In practice, this means that we then end up with the following command-line: ${CXX} ... -I/usr/local/include ... -I/usr/local/include/ffmpeg0/libavcodec -I/usr/local/include/ffmpeg0 ... which fails because of the following chain of events: * The port brings in multimedia/ffmpeg indirectly. * The source code includes headers as <avformat.h> like that, which turn into /usr/local/include/ffmpeg0/libavformat/avformat.h to the compiler. * Headers like avformat.h itself include other headers with "libavcodec/avcodec.h", which, given the compiler command-line above, becomes /usr/local/include/libavcodec/avcodec.h, coming from multimedia/ffmpeg, not multimedia/ffmpeg0. Fix it by making the port behave as it should have from the beginning: * Stop setting C{PP,XX}FLAGS in the Makefile, as it does not help. * Include the ffmpeg-related headers before the others, so that /usr/local/include comes after them. * Adjust patch-cmake so that it works correctly with the setup in ports: instead of setting the <LIB>_LAVC variables which assume there is a separate libavcodec installed, make the code fall back to the <LIB>_FF_LAVC ones, which are set when there's a libavcodec inside an ffmpeg tree (our case with ffmpeg0). This also takes care of setting FFMPEG_INCLUDE_DIR with /usr/local/include/ffmpeg0 and passing it in the right place in the command-line. Tested with both CMake 3.3.1 and 3.4.0. Notes: svn path=/head/; revision=402460
* Point MASTER_SITES to my local copy of the tarball.Raphael Kubo da Costa2015-11-261-1/+1
| | | | | | | | k9copy.sourceforge.net seems to have been removed, and the tarballs are gone with it. Notes: svn path=/head/; revision=402451
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-02-011-14/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=378270
* - Update libxine to 1.2.6 - changelog is here:Juergen Lock2014-10-181-1/+1
| | | | | | | | | | | | | http://anonscm.debian.org/hg/xine-lib/xine-lib-1.2/file/9aef7a72d009/ChangeLog - Remove an inline from include/xine/xineutils.h for the benefit of using libxine with base gcc 4.2 . - Bump PORTREVISIONs for ports depending on libxine. (now also non-default rdeps as per the new rule) Notes: svn path=/head/; revision=371159
* 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
* Upgrade OpenEXR and ilmbase to 2.2.0.Matthias Andree2014-08-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | GCC 4.2 in FreeBSD 8.X/9.X base is now too old to compile OpenEXR, so GCC-based systems will upgrade to the default ports compiler (GCC 4.7 currently.) Add two patches to OpenEXR to permit building it in a live system with the older OpenEXR version installed. Bug report filed to upstream Github at https://github.com/openexr/openexr/issues/130 Couple OpenEXR more tightly to ilmbase and require its exact .so version. Add UPDATING note, and bump PORTREVISION of all dependent ports. Proto-STAGE hugin-devel, and mark it IGNORE because hugin is newer. Approved by: portmgr (implicit for bumping PORTREVISION on unstaged ports) Notes: svn path=/head/; revision=365038
* - Bump PORTREVISION after KDE4_PREFIX changeMax Brazhnikov2014-02-181-1/+1
| | | | Notes: svn path=/head/; revision=344898
* - Fix the build with clang and 10+'s ld(1).Raphael Kubo da Costa2014-01-254-22/+39
| | | | | | | | | | | | | | | | | | | | | On the clang side, there's a non-void function missing a return statement and some wrong QString-to-char* casts that had to be fixed. On the linker side, r253839 made our ld stricter, so we had to add some shared libraries that we use since they are not being pulled in indirectly anymore. Based on a patch by Jan Henrik Sylvester <me@janh.de> [1]. - Set LICENSE - Support staging. - Remove LATEST_LINK, it is deprecated. - Use the new OPTIONS helpers for conditional RUN_DEPENDS. PR: ports/185032 [1] Submitted by: Jan Henrik Sylvester <me@janh.de> [1] Approved by: maintainer timeout (37 days) MFH: 2014Q1 Notes: svn path=/head/; revision=341132
* multimedia/k9copy-kde4: add missing cmake ffmpeg patchWilliam Grzybowski2013-10-211-0/+93
| | | | | | | - Add missing cmake ffmpeg patch Notes: svn path=/head/; revision=331211
* multimedia/k9copy-kde4: link against ffmpeg0William Grzybowski2013-10-211-4/+16
| | | | | | | | | | - Link against ffmpeg0 - Convert lib depends to new format Approved by: portmgr (bapt, implicit) Notes: svn path=/head/; revision=331202
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | multimedia) Notes: svn path=/head/; revision=327747
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - adoption of optionsNGJason Helfman2013-06-041-12/+10
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=319909
* - convert USE_CMAKE to USESMax Brazhnikov2013-03-221-1/+1
| | | | | | | | | | - while here clean up some ports from CMAKE_VERBOSE, which is intended for users Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314960
* - Update multimedia/libxine to 1.2.2 .Juergen Lock2012-06-231-1/+1
| | | | | | | - Bump PORTREVISION for ports depending on it by default. Notes: svn path=/head/; revision=299814
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-061-2/+1
| | | | | | | Review by: bapt, David Naylor (kde team) Notes: svn path=/head/; revision=298557
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* Remove build dependencies on textproc/docbook-xml and textproc/docbook-xsl.Max Brazhnikov2012-03-071-1/+0
| | | | | | | | They were added to fix build with kdelibs-4.5, while correct fix was to add them as run dependencies for x11/kdelibs4 (done a while ago). Notes: svn path=/head/; revision=292881
* - Update multimedia/libxine to 1.2.1 with a commit merged from hgJuergen Lock2012-02-263-1/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to fix DVB support. (which still is broken for tuners using hardware pid filtering, like when running webcamd with "-m dvb-usb-init.force_pid_filter_usage=1".) - Add patches to fix build of ports depending on libxine to: audio/amarok, graphics/gimageview [1], graphics/pornview [1], graphics/osg [2], graphics/osg-devel [2], multimedia/emotion, x11/kdelibs4 [3], multimedia/kmplayer, multimedia/konverter, multimedia/qdvdauthor [4], multimedia/vdr-plugin-xineliboutput, multimedia/xfce4-media [5], multimedia/xine_artsplugin, multimedia/k9copy-kde4 [6] - Fix RUN_DEPENDS= xine... which should be LIB_DEPENDS for audio/atunes . [7] - Mark multimedia/phonon-xine BROKEN which refuses to build with libxine 1.2.x and is deprecated upstream. [3] - Disable XINE knob for x11/eaglemode for which I don't have a fix. [2] - Note: multimedia/kaffeine runs after rakuco's x11/kdelibs4 fix, but it only shows a green window at least with mp4 or ts files. (avi files and audio still work.) It seems the kaffeine developers have found this too and are now switching away from libxine in their git repo - so I guess we'll have a broken kaffeine at least until they release a new version. - Bump PORTREVISIONs for ports depending on libxine by default. - Add optional libbluray support to multimedia/libxine and multimedia/vdr-plugin-xineliboutput. PR: ports/165057 [6] Submitted by: nox (self) [6], rakuco [3] Approved by: dinoex (maintainer, via irc) [1], amdmi3 (maintainer, via private email) [2], kde@ (rakuco, via irc) [3], Phil Oleson <oz@nixil.net> (maintainer, via private email) [4], xfce@ (rene, via irc) [5], Eduardo Gielamo Oliveira <egoliveira@gmail.com> (maintainer) [6], lme (maintainer, via irc) [7] Thanx to: Darren Salt (upstream libxine maintainer) for a few hints on irc to help with patching ports depending on deprecated libxine features Notes: svn path=/head/; revision=292268
* - Bump PORTREVISION to chase the update of multimedia/libvpxAshish SHUKLA2012-02-161-1/+1
| | | | Notes: svn path=/head/; revision=291538
* - remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276986
* Bump due to ffmpeg update to 0.7.1Martin Matuska2011-06-241-1/+1
| | | | Notes: svn path=/head/; revision=276239
* Fix build with upcoming KDE 4.5Max Brazhnikov2010-08-231-0/+1
| | | | | | | Approved by: Eduardo Gielamo Oliveira (maintainer) Notes: svn path=/head/; revision=259839
* - Update ffmpeg to 0.6Martin Matuska2010-07-241-1/+1
| | | | Notes: svn path=/head/; revision=258164
* Chase audio/libmodplug update.Emanuel Haupt2010-04-241-1/+1
| | | | Notes: svn path=/head/; revision=253157
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-0/+1
| | | | Notes: svn path=/head/; revision=249285
* mark MAKE_JOBS_SAFEMax Brazhnikov2010-01-301-1/+1
| | | | Notes: svn path=/head/; revision=248857
* Update to 2.3.4 for KDE4.Max Brazhnikov2010-01-307-96/+139
| | | | | | | | PR: based on ports/141860 Submitted by: Eduardo Gielamo Oliveira <egoliveira at gmail.com> Notes: svn path=/head/; revision=248855
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with M Notes: svn path=/head/; revision=240072
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -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 Notes: svn path=/head/; revision=238781
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-1/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* Replace libdvdread with the version maintained by the mplayer groupRobert Noland2009-02-081-2/+2
| | | | | | | | | | | | | -Turn over maintainership -Bump ports that depend on libdvdread since shared lib version rolls back from .5 to .4 -Fix multimedia/ogle build with this version PR: 127849 Submitted by: Ganael LAPLANCHE <ganael.laplanche@martymac.com> Notes: svn path=/head/; revision=227814
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-1/+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) Notes: svn path=/head/; revision=211584
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-1/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* * LIB_DEPENDS changes (require libdvdread.so.5)Jeremy Chadwick2007-04-051-1/+2
| | | | | | | | | * PORTREVISION increment Reviewed by: philip Notes: svn path=/head/; revision=189307
* Update to 1.0.4Volker Stolz2006-05-113-15/+5
| | | | | | | | PR: ports/96464 Submitted by: maintainer Notes: svn path=/head/; revision=162074
* Remove USE_REINPLACE from ports starting with MEdwin Groothuis2006-05-101-1/+0
| | | | Notes: svn path=/head/; revision=162032
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* - Update to 1.0.3Tim Bishop2006-02-0614-189/+20
| | | | | | | | PR: 92536 Submitted by: triosoft@triosoft.com.ua (maintainer) Notes: svn path=/head/; revision=155329
* [UPDATE PORT] multimedia/k9copyEdwin Groothuis2006-01-0718-82/+211
| | | | | | | | | | | | | | | | This is port update for newer 1.0.2 version of k9copy. Previous port version don't build on 4.x due to missing stdint.h so in this version of port every include of stdint.h wrapped with ifdef falling back to inttypes.h where stdint.h isn't availible and inttypes.h present. So now k9copy should be buildable on 4.x. I cant check it cause I do not have any 4.x box around. PR: ports/91356 Submitted by: Alexander V. Ribchansky <triosoft@triosoft.com.ua> Notes: svn path=/head/; revision=152923
* [NEW PORT] multimedia/k9copy A DVD-9 to DVD-5 shrinking application for KDEEdwin Groothuis2005-12-2610-0/+185
XK9Copy is a small utility which allows the copy of DVD on Linux. The DVD video stream is compressed by the program Vamps. 1. Copy without menus : In this case, dvdauthor is used to create a new DVD structure. It is possible to choose the order in which the video sequences are played. 2. Copy with menus : As dvdauthor does not make it possible to integrate the original menus, K9Copy reproduces the original structure of the DVD. The navigation packs as well as IFO files are modified to point on the compressed MPEG stream. Features * The video stream is compressed to make the DVD fit on 4.7 Gb recordable DVD * DVD Burning * Creation of ISO images * Possibility of selecting the audio tracks and subtitles to be copied * Title preview (video only) * Possibility of preserving the original menus WWW: http://k9copy.free.fr PR: ports/90795 Submitted by: Alexander V. Ribchansky <triosoft@triosoft.com.ua> Notes: svn path=/head/; revision=152042