Commit graph

115 commits

Author SHA1 Message Date
Alexey Dokuchaev
9dd5051198 Base GCC 4.2.1 on PowerPC fails with "internal compiler error: in do_SUBST,
at combine.c:502" error, thus request a modern compiler to fix the build.
2015-09-07 11:57:18 +00:00
Antoine Brodin
6e5719ca80 Convert to USES=jpeg 2015-06-22 18:33:20 +00:00
Dmitry Marakasov
40f13c68dc - Drop @dirrm* from and add empty directories to pkg-plists
Approved by:	portmgr blanket
2015-02-01 20:24:27 +00:00
Antoine Brodin
89c0b0782c Allow building with libc++ r224926
PR:		ports/196629
Submitted by:	dim@
2015-01-09 17:58:46 +00:00
Baptiste Daroussin
bb21093773 Bump portrevision after png update 2014-12-25 20:54:41 +00:00
Antoine Brodin
7ae46e9b12 Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade 2014-12-25 19:04:25 +00:00
Tijl Coosemans
60945f0277 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.
The ports install a symlink with the old library version.  When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.

Also remove the devel/pcre dependency from USE_GNOME=glib20.  It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it.  The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20.  Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.

PR:		195724
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-12-08 16:48:38 +00:00
Gerald Pfeifer
15945f8122 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)
2014-09-10 20:50:31 +00:00
Tijl Coosemans
60bea3b31b Remove patches added together with USES=libtool that are no longer needed
after r362656.
2014-07-23 20:33:34 +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
Koop Mast
0e90ccad24 Fix two problems.
Use class instead of struct for RateCtl in encoderparams.hh. Class RateCtl is
  defined in ratectl.hh and used elsewhere in the code too.
Fix headerguard typo in ontheflyratectlpass[12].hh.

Found by:	Clang
2014-07-22 09:59:01 +00:00
Tijl Coosemans
2a80647398 Add missing libs when the QUICKTIME and DV options are enabled.
Reported by:	Ajtim <lumiwa@gmail.com>
2014-06-23 10:47:17 +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
Marcus von Appen
74c65ae602 - Update graphics/sdl_gfx to version 2.0.25
- Bump PORTREVISION on ports depending on it, since the shlib version changed
2014-06-01 08:11:34 +00:00
Tijl Coosemans
dd6f9aecd2 Convert graphics/sdl_gfx to USES=libtool. Also set USE_AUTOTOOLS because
upstream forgot to regenerate the build scripts.  This makes the build use
the correct version information and causes a library version bump.  Use
this opportunity to use USES=libtool instead of USES=libtool:oldver.
Bump PORTREVISION on all dependent ports and convert them to USES=libtool
where needed.  Also use USES=(gmake, pathfix, tar) and new LIB_DEPENDS
syntax here and there.

games/freedink-engine:
- Option helpers.
- Staging.
- Use dirrmtry for locale directories.

games/oolite:
- Staging.
- Replace ECHO with ECHO_CMD.
- Don't use GNUSTEP_PREFIX to install files because it expands to
  LOCALBASE rather than PREFIX.

games/openssn:
- Remove USES=desktop-file-utils.  No MimeType field in desktop file.
- Staging.
- Install files in standard DATADIR.

games/xblast:
- Use proper options.
- Staging.
- Patch configure so normal make install can be used instead of do-install.
- Replace TAR | TAR with COPYTREE_SHARE.
2014-05-02 14:16:49 +00:00
Martin Wilke
868034aedc - Update to 2.1.0
PR:		185934
Submitted by:	ports fury
2014-02-27 08:36:11 +00:00
Baptiste Daroussin
00918f2a91 Support stage 2013-12-14 00:58:19 +00:00
Baptiste Daroussin
855fb638fb Add NO_STAGE all over the place in preparation for the staging support (cat: multimedia) 2013-09-20 20:57:48 +00:00
Alex Kozlov
d4041784dc - Remove MAKE_JOBS_SAFE variable
Approved by:	portmgr (bdrewery)
2013-08-14 22:35:50 +00:00
Baptiste Daroussin
23f55e92b9 Convert some multimedia@ ports to:
USES=pkgconfig and USES=pathfix
2013-04-22 22:57:36 +00:00
Baptiste Daroussin
f9b18d0317 Use build-only dependency on pkgconf
Trim headers
2012-10-06 21:58:43 +00:00
Sylvio Cesar Teixeira
3dd11972b0 - Fix build with GTK2 option
- Fix build with non-default compiler on i386
- Add MAKE_JOBS_SAFE

New file:
files/patch-y4mdenoise__MotionSercher.hh

Remove file:
files/patch-utils-Makefile.in

PR:		ports/169005
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2012-06-17 20:13:40 +00:00
Pav Lucistnik
6191fcd429 - bin/png2yuv does not depend on gtk2 option
Reported by:	pointyhat
2012-06-13 20:24:25 +00:00
Pav Lucistnik
e7bd12c00a - Mark BROKEN when GTK2 option is enabled, because glav binary is not built
- Flip GTK2 option to default:off to enable package build with default options

Reported by:	pointyhat
2012-06-11 20:38:39 +00:00
Koop Mast
b05dcd4bda Fix SDL check inside the GTK2 block. The port was marked IGNORE regardless of
the setting of SDL.
2012-06-01 21:54:51 +00:00
Dirk Meyer
023a67889b - fix build with png 1.5.10 2012-06-01 06:18:49 +00:00
Dirk Meyer
2b74a89bc8 - update png to 1.5.10 2012-06-01 05:26:28 +00:00
Baptiste Daroussin
8ce05bc8de convert to new options framework 2012-05-30 17:13:06 +00:00
Steve Wills
f82c5a1ab6 - Fix plist issue with QUICKTIME=true
PR:		ports/161871
Submitted by:	"Edward.Sanford.Sutton, III" <mirror176@cox.net>
2012-03-03 02:52:48 +00:00
Marcus von Appen
fbd0197639 - 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
2012-02-18 10:18:33 +00:00
Mark Linimon
7f066c452d Mark as broken on powerpc-9: gcc segfault.
Hat:		portmgr
Feature safe:	yes
2011-11-11 03:00:37 +00:00
Eitan Adler
4e46239174 - explicitly disable sdl when WITHOUT_SDL is used
- fix plist when WITHOUT_GTK2 is requested

Approved by:	multimedia (kwm)
Approved by:	sahil (mentor)
2011-10-24 23:27:20 +00:00
Eitan Adler
3956059085 -resolve ICE on i386
PR:		ports/157885
Submitted by:	Jimmie James <jimmiejaz@gmail.com>
Approved by:	multimedia (kwm)
Approved by:	sahil (mentor)
2011-10-02 21:36:01 +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
Marcus von Appen
54bbacafe6 - Update graphics/sdl_gfx to version 2.0.22
- Update Mk/bsd.sdl.mk for the new shared lib version
- Bump portrevisions for all ports depending on graphics/sdl_gfx
2011-07-02 19:59:19 +00:00
Baptiste Daroussin
a8964fc594 - update mjpegtools to 2.0.0
- chase library bump
2011-06-06 04:31:52 +00:00
Ade Lovett
4a8684e352 Sync to new bsd.autotools.mk 2010-12-04 07:34:27 +00:00
Martin Wilke
b5cd10fe43 - Fix segmentation fault with jpeg
PR:		146308
Submitted by:	Ports Fury
2010-05-09 11:22:10 +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
Martin Wilke
ca5c271b72 - Update to 1.9.0
PR:		143816
Submitted by:	Ports Fury
2010-02-13 08:42:30 +00:00
Dirk Meyer
ca9c60461c - update to jpeg-8 2010-02-05 11:46:55 +00:00
Dmitry Marakasov
a13d9a603d - Switch SourceForge ports to the new File Release System: categories starting with M 2009-08-22 00:28:34 +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
3bbc108312 - update to jpeg7
Tested by:	pav on pointyhat
2009-07-18 11:11:29 +00:00
Martin Wilke
3e4ed01146 - 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)
2008-04-19 17:56:05 +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
Martin Wilke
2d73db3533 - Chase devel/sdl12 shlib version bump 2008-03-13 14:28:35 +00:00
Michael Johnson
c18ce7174f Update to 1.9.0rc3
PR:		ports/120265
Submitted by:	Yuri
2008-02-05 12:42:49 +00:00
Michael Johnson
1668f65977 Update to 1.9.0rc2 2007-06-25 17:16:59 +00:00
Edwin Groothuis
71e512b8a8 [patch] multimedia/mjpegtools - update to 1.9rc1
The current mjpegtools (mpeg2enc for example) is dumping core way
	too often to be able to do useful media conversions.

	This version has been running on my system for two weeks now and
	it works much better.

portrevision bump for multimedia/lives multimedia/mjpegtools-yuvfilters
multimedia/y4mscaler since they have LIB_DEPENDS on this port. Other
ports having RUN_DEPENDS on this port are not bumped.

PR:		ports/113878
Submitted by:	Edwin Groothuis <edwin@mavetju.org>
Approved by:	Michael Johnson <ahze@ahze.net>
2007-06-21 01:35:39 +00:00