Add missing jbig2dec and openjpeg to LIB_DEPENDS, registering them
as run-time dependencies.
Without this change, both packages are removed during pkg autoremove,
resulting in the inability to open PDF files.
PR: 203850
Submitted by: Zsolt Udvari <udvzsolt gmail com> (maintainer)
MFH: 2015Q4
- Use USES=localbase
- Use PORTDOCS
- Do not install png2dbl.c
- Convert to new options target helper
- Cleanup Makefile
- Bump PORTREVISION for package change
- Support multiple values in *_OLD_CMD, i.e. we can now fix both "/usr/bin/python" and "/usr/bin/env python" at the same time
- Default *_OLD_CMD values are now always appended, so you don't need to specify them in individual ports
- Add lua support (depends on USES=lua)
- Add more default values, such as "/usr/bin/env foo" for python, perl, bash, ruby and lua
- Shebangfix now matches whole words, e.g. we will no longer (erroneously) replace "/usr/bin/perl5.005" with "${perl_CMD}5.005" (but "/usr/bin/perl -tt" is still (correctly) replaced with "${perl_CMD} -tt")
Note that *_OLD_CMD items containing spaces must now be quoted (e.g. perl_OLD_CMD=/bin/perl /usr/bin/perl "/usr/bin/env perl")
Update shebangfix usage according to new rules in many ports:
- Remove *_OLD_CMD for patterns now replaced by default
- Quote custom *_OLD_CMD which contain spaces
Fix shebangfix usage in many ports (irrelevant to infrastructure change):
- Remove redundant SHEBANG_LANG (no need to duplicate default langs)
- Remove redundant *_CMD (such as python_CMD=${LOCALBASE}/bin/python${PYTHON_VER} when USES=python is present)
- Never use *_OLD_CMD in REINPLACE_CMD matchers, these should always look for exact string
Approved by: portmgr (bapt)
Differential Revision: D3756
- Add option for v4l [1]
- Use more option helpers [1]
- Removed CUPS option since CUPS requirement has been dropped upstream [1]
While here:
- Convert to USES=localbase
- Regenerate some patches [1]
This version also includes support for Canon LiDE 220 scanners. [2]
PR: 203799 [1], 200788 [2]
Submitted by: Ports Fury [1], avg@ [2]
- Convert REINPLACE_CMD's that no longer could remain trivial due to [2]
to regular patch files
- Mute numerous warnings of `__aligned()' macro being redefined as they
severely clutter build logs
- Restrict to Intel CPUs due to heavy use of their SIMD instructions
Reported by: pkg-fallout [1]
arch, like is done for the dri drivers. This fixes Mesa build on arm. [1]
* Explicitly disable libva support. This resolves a build issue if libva
is installed. [2]
* remove the gallium-intel configure flag, it is gone.
PR: 197548 [2]
Reported by: sbruno@ [1]
Reported by: rozhuk.im@gmail.com [2]
Tested by: sbruno@ on arm [1]
`x11/nvidia-driver' slave port where it makes sense because dashed number
is actually a major version. Here this suffix is "dedotted" full version
and used purely to give the package unique name. This logic follows our
existing `multimedia/ffmpeg0' and `devel/subversion*' ports, for example.
- Drop workarounds for older math functions and reenable use of sinhl(3),
coshl(3), and frexp(3) on FreeBSD versions that have them in libm
- Remove useless definite article from COMMENT line
- Install manual page with its section suffix (1) instead of "man"
- Unmute installation commands, sort pkg-plist, trim pkg-descr while here
PR: 203360
Submitted by: pfg
Approved by: maintainer timeout (since 2015-09-26)
GraphicsMagick was just updated, but there was as newer, second
PR to upgrade it once more. And again, the shared library version
has been bumped (haven't these guys heard of symbol versioning?)
While the INDEX references 114 users of GraphicksMagick, I'm going to
only bump the same 8 ports as yesterday. The bump script appears to
be obsolete (still uses CVS!)
PR: 203547
Submitted by: Walter Schwarzenfeld
* Unbreak build on powerpc and other !x86 archs by moving the
--with-dri-drivers logic from dri/Makefile to the
libGL/Makefile.common file. So the settings are applied to all mesa ports,
this was missed in the 10.6.6 update. [1]
* Don't try to enable OpenCL support on anything other then i386 and amd64. [1]
* Move the texture-float and vdpau logic to Makefile.common even if the latter
isn't supported yet. Keep OPTIONS_DEFINE/DEFAULT in dri/Makefile since they
need to defined before bsd.port.options.mk is included, and they only affect
the dri modules.
* Sed on 11 and 10 supports \< and \> however sed on 9.x and dragonfly do not,
replace the sed keywords with some magic to get the intended results. [2]
Submitted by: marino@ [2]
Reported and tested by: arved@ (on ppc32)[1]