Commit graph

87 commits

Author SHA1 Message Date
Tobias Kortkamp
3cf0c52fa6 graphics: Add missing USES={gl,gnome,sdl} 2019-11-08 14:36:06 +00:00
Mathieu Arnold
4e1b79a0a6 Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:00:51 +00:00
Tijl Coosemans
a374acb969 By default libtool replaces -export-symbols <file> with -retain-symbols-file
<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
2015-08-02 15:03:19 +00:00
Koop Mast
9614745954 Release swfdec ports. 2015-07-02 17:51:12 +00:00
Baptiste Daroussin
a76a739bfe Cleanup plist 2014-10-20 17:04:20 +00:00
Adam Weinberger
670f06c522 Remove quotes that surrounded entire _DESC strings.
Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-23 17:12:13 +00:00
Tijl Coosemans
c958a48581 Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always work
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)
2014-07-23 10:28:03 +00:00
Tijl Coosemans
3e4a806167 Add 4 new sed commands to USES=libtool. The first two apply some of the
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)
2014-06-22 10:44:29 +00:00
Tijl Coosemans
28f30a1d62 - USES=libtool.
- INSTALL_TARGET=install-strip.
2014-05-18 17:25:18 +00:00
Matthias Andree
735c8950c1 Convert to staging. Modernize.
Approved by:	portmgr (blanket)
2014-02-20 08:43:55 +00:00
Baptiste Daroussin
eb08c5441c Add NO_STAGE all over the place in preparation for the staging support (cat: graphics) 2013-09-20 18:35:44 +00:00
Baptiste Daroussin
c7d6ee97c1 Add an explicit dependency on pkgconf 2013-09-03 10:23:55 +00:00
Koop Mast
ebf7eb4947 OptionsNG my ports. 2012-06-12 18:49:15 +00:00
Dirk Meyer
2b74a89bc8 - update png to 1.5.10 2012-06-01 05:26:28 +00:00
Dmitry Marakasov
6f6fbe4bdf - 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
2011-09-23 22:26:39 +00:00
Olli Hauer
30f9161773 -remove MD5 2011-07-03 14:12:22 +00:00
Ade Lovett
4a8684e352 Sync to new bsd.autotools.mk 2010-12-04 07:34:27 +00:00
Dirk Meyer
de78af3ac5 - update to 1.4.1
Reviewed by:	exp8 run on pointyhat
Supported by:	miwi
2010-03-28 06:47:48 +00:00
Dirk Meyer
ca9c60461c - update to jpeg-8 2010-02-05 11:46:55 +00:00
Jeremy Messenger
789d75c728 -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
2009-08-02 19:36:34 +00:00
Dirk Meyer
eca78ec61b - bump all port that indirectly depends on libjpeg and have not yet been bumped or updated
Requested by:	edwin
2009-07-31 13:57:52 +00:00
Joe Marcus Clarke
610ae56816 Presenting GNOME 2.24 for FreeBSD.
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
2009-01-10 05:22:13 +00:00
Koop Mast
f675efec5d Pick up maintainership. 2009-01-01 13:35:39 +00:00
Alexander Botero-Lowry
9d085d758f Drop maintainership 2008-12-12 09:48:37 +00:00
Ade Lovett
771ea13f41 Conversion from (now defunct) autoconf-2.61 to autoconf-2.62
Tested by:	exp build run (erwin)
2008-08-20 00:57:32 +00:00
Joe Marcus Clarke
acc7c83c0b Only add the ffmpeg CPPFLAGS if not building with gstreamer. 2008-08-10 23:06:06 +00:00
Joe Marcus Clarke
5b01bf24b2 Fix the build now that ffmpeg installs libswscale. 2008-08-10 19:47:38 +00:00
Alexander Botero-Lowry
56ba6e4f04 - update to 0.6.8 2008-08-06 17:11:17 +00:00
Edwin Groothuis
090059a210 Bump portrevision due to upgrade of devel/gettext.
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)
2008-06-06 14:17:21 +00:00
Henrik Brix Andersen
d164b01952 - Update to version 0.6.6 (security update)
- 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
2008-05-08 18:12:05 +00:00
Joe Marcus Clarke
6f32add9a7 The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 for
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
2008-03-24 03:52:36 +00:00
Martin Wilke
c4c8f4be45 - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Bump PORTREVISION

Approved by:	portmgr (xorg cleanup)
2008-03-23 11:11:33 +00:00
Pav Lucistnik
9fc1c4fe89 - Remove USE_GETOPT_LONG which is a no-op since March 2007 2008-03-20 09:56:52 +00:00
Alexander Botero-Lowry
76a079d2f2 - add a missing + so that new libraries are appended instead of
overriding the depends list

Spotted by:	pointhat (via pav)
2007-12-20 00:17:00 +00:00
Alexander Botero-Lowry
3000dc570c - enable ffmpeg and mad when not using gstreamer
- fix an icon plist issue
2007-12-18 21:08:51 +00:00
Alexander Botero-Lowry
84851c7720 - update to 0.5.5 2007-12-18 20:40:39 +00:00
Alexander Botero-Lowry
d7f22be1b9 - add a missing file to the pllist
Noticed by:		linimon@ (via pointyhat)
2007-10-26 03:08:33 +00:00
Alexander Botero-Lowry
9dcbc8b3a3 - update swfdec and swfdec-mozilla to 0.5.3 2007-10-23 04:04:07 +00:00
Alexander Botero-Lowry
a56a8b3519 - update to 0.5.2 2007-09-07 10:29:40 +00:00
Alexander Botero-Lowry
093efc5772 - bump LIBVERSION [1]
- appease portlint

Noted by:	anholt
2007-08-06 19:04:52 +00:00
Alexander Botero-Lowry
55d045f149 - remove unnecessary USE_GSTREAMER
Spotted by: Henrik Brix Andersen
2007-08-06 16:53:02 +00:00
Alexander Botero-Lowry
adfbf42058 - update to 0.5.1 which adds support for OSS
- make gstreamer OPTIONal
 - take maintainership

Requested by:	Roman Divacky
2007-08-06 14:18:31 +00:00
Eric Anholt
c431230f60 Update swfdec and swfdec-plugin to 0.5.0.
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.
2007-07-14 15:33:18 +00:00
Mark Linimon
0c0a374650 Reset rainer.alves@gmail.com by request due to current lack of time to
work on FreeBSD.
2007-06-29 19:33:24 +00:00
Eric Anholt
2ab88af339 Update to 0.4.5 and fix packaging. 2007-06-20 20:08:40 +00:00
Eric Anholt
d3f5dbe79e Add missing dependency on gnomevfs2.
Reported by:	krismail
2007-05-29 18:35:37 +00:00
Eric Anholt
e34f2614f0 Update swfdec's dependencies for ffmpeg-devel -> ffmpeg merge. 2007-05-25 20:05:10 +00:00
Eric Anholt
ac6d0e6685 Update swfdec to 0.4.4.
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.
2007-05-25 18:15:33 +00:00
Florent Thoumie
d4f0d0048a - Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
2007-05-19 20:36:56 +00:00
Eric Anholt
bd05a72dfb Unbreak from my previous update.
Additionally, unbreak when our stale ffmpeg-devel happens to be installed.
2007-03-09 20:15:12 +00:00