aboutsummaryrefslogtreecommitdiff
path: root/graphics/swfdec/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* By default libtool replaces -export-symbols <file> with -retain-symbols-fileTijl Coosemans2015-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <file> on ELF systems, but this doesn't really do what -export-symbols is meant to do. On GNU ELF systems it converts <file> to a simple version script first and then uses -version-script instead of -retain-symbols-file. Let USES=libtool patch libtool scripts to do this on all systems with GNU ld(1). Bump PORTREVISION on all ports where the build log contains -export-symbols. audio/calf: This port builds a module that now exports only one function, but it also builds a number of executables that link to this module and expect to see other functions. Because it's already a bit dodgy to link to a module (libtool warns about this) let the module continue to export only one function and instead build an ordinary library from the same source that the executables can link to. Fix a number of other issues in the same Makefile.am and clean up the port Makefile. japanese/scim-honoka: Tries to hide all symbols that start with an underscore, but because this library is written in C++ all symbols start with _Z so it ends up hiding everything. Just don't hide anything at all like the textproc/scim configure script does. multimedia/schroedinger: Apply an upstream patch. textproc/scim-input-pad: Same as japanese/scim-honoka. PR: 201922 Approved by: portmgr (antoine) Exp-run by: antoine Notes: svn path=/head/; revision=393429
* Release swfdec ports.Koop Mast2015-07-021-1/+1
| | | | Notes: svn path=/head/; revision=391174
* Remove quotes that surrounded entire _DESC strings.Adam Weinberger2014-07-231-1/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=362713
* Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always workTijl Coosemans2014-07-231-3/+1
| | | | | | | | | | | | | | | | | | | | | | | when an older version of a package is installed. This is the case when an executable links with installed libraries and with uninstalled libraries that link with other uninstalled libraries. For each of the directly linked libraries the executable will have an rpath (/usr/local/lib for the installed libraries and a path under WRKDIR for each of the uninstalled libraries), but not for the indirect libraries. Both ld(1) and rtld(1) search the rpath of the executable first before any rpath of libraries, so the indirectly linked libraries will be found in /usr/local/lib if they are installed instead of in WRKDIR. With this commit executables will overlink with uninstalled indirect libraries again so their location is added to the rpath of the executable. This partially reverts r358784. PR: 191611 Approved by: portmgr (bapt) Notes: svn path=/head/; revision=362656
* Add 4 new sed commands to USES=libtool. The first two apply some of theTijl Coosemans2014-06-221-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that Debian made to their libtool. The first command applies to libtool versions 1.4 and up. The second command is somewhat more elaborate but essentially it uses the sed hold space to move an "elif...fi" block down. It applies to 2.x. Together these reduce overlinking to unpatched .la files (from ports that don't have USES=libtool yet but also .la files in the work directory). The third and fourth command fix relinking. During staging libtool may relink libA when it links to another library in the work directory libB. The reason is that libA created during build phase has its runpath set to the location of libB in the work directory. This allows running an executable that links to libA from within the work directory. The relink removes this extra runpath. When libtool relinks libA it replaces "libB.la" on the linker command line with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in the stage directory but this -L flag isn't necessarily the first so another libB may be linked instead. The two sed commands make relink the same as a normal link. This means libtool will relink with libraries from the work directory using a path similar to "../srcB/.libs/libB.so" without -L flags. This applies to libtool 1.4 and up. Earlier versions don't seem to relink libraries. (This fixes ports like devel/apr1 so they link with freshly built libraries instead of installed libraries.) Fix all ports with missing libraries. Additionally: archivers/rpm4: USES=patchfix. databases/gdbm: INSTALL_TARGET=install-strip. devel/gnome-vfs: remove patch that doesn't change anything. devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS. devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD. multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386 instead of disabling optimisations. net/libnetdude: disable static plugins. PR: 190941 Exp-run: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=358784
* - USES=libtool.Tijl Coosemans2014-05-181-10/+7
| | | | | | | - INSTALL_TARGET=install-strip. Notes: svn path=/head/; revision=354444
* Convert to staging. Modernize.Matthias Andree2014-02-201-8/+11
| | | | | | | Approved by: portmgr (blanket) Notes: svn path=/head/; revision=345191
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | graphics) Notes: svn path=/head/; revision=327733
* Add an explicit dependency on pkgconfBaptiste Daroussin2013-09-031-5/+2
| | | | Notes: svn path=/head/; revision=326133
* OptionsNG my ports.Koop Mast2012-06-121-2/+3
| | | | Notes: svn path=/head/; revision=299136
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=282282
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* - 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-1/+1
| | | | Notes: svn path=/head/; revision=249285
* -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-0/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* Presenting GNOME 2.24 for FreeBSD.Joe Marcus Clarke2009-01-101-21/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See http://library.gnome.org/misc/release-notes/2.24/ for the general release notes. On the FreeBSD front, this release introduces Fuse support in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some long-standing seahorse and gnome-keyring bugs. The documentation updates to the website are forthcoming. This release features commits by adamw, ahze, kwm, mezz, and myself. It would not have been possible without are contributors and testers: Alexander Loginov Craig Butler [1] Dmitry Marakasov [6] Eric L. Chen Joseph S. Atkinson Kris Moore Lapo Luchini [7] Nikos Ntarmos Pawel Worach Romain Tartiere TAOKA Fumiyoshi [3] Yasuda Keisuke Zyl aZ [4] bf [2] [5] Florent Thoumie Peter Wemm pluknet PR: 125857 [1] 126993 [2] 130031 [3] 127399 [4] 127661 [5] 124302 [6] 129570 [7] 129936 123790 Notes: svn path=/head/; revision=225629
* Pick up maintainership.Koop Mast2009-01-011-1/+1
| | | | Notes: svn path=/head/; revision=225086
* Drop maintainershipAlexander Botero-Lowry2008-12-121-1/+1
| | | | Notes: svn path=/head/; revision=224148
* Conversion from (now defunct) autoconf-2.61 to autoconf-2.62Ade Lovett2008-08-201-1/+1
| | | | | | | Tested by: exp build run (erwin) Notes: svn path=/head/; revision=218886
* Only add the ffmpeg CPPFLAGS if not building with gstreamer.Joe Marcus Clarke2008-08-101-1/+4
| | | | Notes: svn path=/head/; revision=218384
* Fix the build now that ffmpeg installs libswscale.Joe Marcus Clarke2008-08-101-1/+1
| | | | Notes: svn path=/head/; revision=218357
* - update to 0.6.8Alexander Botero-Lowry2008-08-061-2/+1
| | | | Notes: svn path=/head/; revision=218154
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+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
* - Update to version 0.6.6 (security update)Henrik Brix Andersen2008-05-081-3/+5
| | | | | | | | | | | | | - Fix problem with inclusion of bsd.port.*.mk (.pre.mk must be included prior to testing OPTIONS) PR: ports/123373 Submitted by: myself Approved by: maintainer-timeout, linimon (portmgr), erwin (mentor) Security: http://www.vuxml.org/freebsd/5ef12755-1c6c-11dd-851d-0016d325a0ed.html Notes: svn path=/head/; revision=212844
* The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 forJoe Marcus Clarke2008-03-241-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | FreeBSD. The official GNOME 2.22 release notes can be found at http://library.gnome.org/misc/release-notes/2.22/ . On the FreeBSD front, this release features an updated hal port with support for video4linux devices, DRM (Direct Rendering), and better support of removable media. Work is also underway to tie webkit more closely into GNOME. As part of the GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well. Be sure to consult UPDATING on the proper steps to upgrade all of your GNOME ports. This release would not have been possible without the contributions and testing efforts of the following people: Pawel Worach kan edwin Peter Ulrich Kruppa J. W. Ballantine Yasuda Keisuke Andriy Gapon Notes: svn path=/head/; revision=209647
* - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGMartin Wilke2008-03-231-2/+1
| | | | | | | | | - Bump PORTREVISION Approved by: portmgr (xorg cleanup) Notes: svn path=/head/; revision=209620
* - Remove USE_GETOPT_LONG which is a no-op since March 2007Pav Lucistnik2008-03-201-1/+0
| | | | Notes: svn path=/head/; revision=209420
* - add a missing + so that new libraries are appended instead ofAlexander Botero-Lowry2007-12-201-1/+1
| | | | | | | | | overriding the depends list Spotted by: pointhat (via pav) Notes: svn path=/head/; revision=204161
* - enable ffmpeg and mad when not using gstreamerAlexander Botero-Lowry2007-12-181-4/+4
| | | | | | | - fix an icon plist issue Notes: svn path=/head/; revision=204040
* - update to 0.5.5Alexander Botero-Lowry2007-12-181-1/+2
| | | | Notes: svn path=/head/; revision=204038
* - update swfdec and swfdec-mozilla to 0.5.3Alexander Botero-Lowry2007-10-231-1/+1
| | | | Notes: svn path=/head/; revision=201794
* - update to 0.5.2Alexander Botero-Lowry2007-09-071-1/+1
| | | | Notes: svn path=/head/; revision=199018
* - bump LIBVERSION [1]Alexander Botero-Lowry2007-08-061-2/+5
| | | | | | | | | - appease portlint Noted by: anholt Notes: svn path=/head/; revision=197235
* - remove unnecessary USE_GSTREAMERAlexander Botero-Lowry2007-08-061-1/+0
| | | | | | | Spotted by: Henrik Brix Andersen Notes: svn path=/head/; revision=197229
* - update to 0.5.1 which adds support for OSSAlexander Botero-Lowry2007-08-061-5/+14
| | | | | | | | | | - make gstreamer OPTIONal - take maintainership Requested by: Roman Divacky Notes: svn path=/head/; revision=197223
* Update swfdec and swfdec-plugin to 0.5.0.Eric Anholt2007-07-141-12/+4
| | | | | | | | | The primary feature of this release is a rewrite of the scripting engine for better correctness. The ports are also improved to remove dependencies that haven't existed since the 0.4 series. Notes: svn path=/head/; revision=195580
* Reset rainer.alves@gmail.com by request due to current lack of time toMark Linimon2007-06-291-1/+1
| | | | | | | work on FreeBSD. Notes: svn path=/head/; revision=194480
* Update to 0.4.5 and fix packaging.Eric Anholt2007-06-201-1/+1
| | | | Notes: svn path=/head/; revision=193977
* Add missing dependency on gnomevfs2.Eric Anholt2007-05-291-1/+1
| | | | | | | Reported by: krismail Notes: svn path=/head/; revision=192331
* Update swfdec's dependencies for ffmpeg-devel -> ffmpeg merge.Eric Anholt2007-05-251-1/+1
| | | | Notes: svn path=/head/; revision=191835
* Update swfdec to 0.4.4.Eric Anholt2007-05-251-4/+3
| | | | | | | | | | Also, add dependency on ffmpeg now that our version is new enough. Most importantly, fix linking so that the mozilla plugin resolves swfdec's js calls into the local hacked spidermonkey instead of mozilla's. This greatly improves the stability of swfdec-mozilla. Notes: svn path=/head/; revision=191824
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Unbreak from my previous update.Eric Anholt2007-03-091-3/+3
| | | | | | | Additionally, unbreak when our stale ffmpeg-devel happens to be installed. Notes: svn path=/head/; revision=187041
* BROKEN: Incomplete pkg-plistKris Kennaway2007-02-271-0/+2
| | | | Notes: svn path=/head/; revision=186073
* Update to 0.4.2. This update improves correctness in many ways.Eric Anholt2007-02-131-25/+5
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=185114
* Use gstreamer 0.10 instead of 0.8Michael Johnson2007-02-111-2/+2
| | | | | | | | | PR: 107148 Submitted by: ahze Approved by: maintainer timeout Notes: svn path=/head/; revision=184905
* Chase the GNOME X11BASE to LOCALBASE move, and fix the build with theJoe Marcus Clarke2006-10-141-3/+3
| | | | | | | | | | new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris) Notes: svn path=/head/; revision=175261
* - Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directoryStanislav Sedov2006-09-201-1/+1
| | | | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=173460