Commit graph

6281 commits

Author SHA1 Message Date
John Marino
f8f29f6444 emulators/kcemu, editors/wordgrinder: Document ncurses requirement
Approved by:	ncurses blanket
2016-11-19 19:29:01 +00:00
Jan Beich
23a96f4a5f devel/icu: update to 58.1
Changes:	http://site.icu-project.org/download/58
PR:		214384
Exp-run by:	antoine
Approved by:	office (bapt)
2016-11-19 18:21:20 +00:00
David Naylor
465c300d14 emulators/i386-wine-devel: update to 1.9.23 2016-11-19 13:32:04 +00:00
Jan Beich
7f3933d17c emulators/visualboyadvance-m: unbreak build with ffmpeg 3.x
In file included from src/common/ffmpeg.cpp:62:
src/common/ffmpeg.h:70:5: error: unknown type name 'PixelFormat'; did you mean 'AVPixelFormat'?
    priv_PixelFormat pixfmt;
    ^~~~~~~~~~~~~~~~
    AVPixelFormat
src/common/ffmpeg.cpp:61:26: note: expanded from macro 'priv_PixelFormat'
 #define priv_PixelFormat PixelFormat
                          ^
/usr/local/include/libavutil/pixfmt.h:60:6: note: 'AVPixelFormat' declared here
enum AVPixelFormat {
     ^
src/common/ffmpeg.cpp:81:11: error: use of undeclared identifier 'avcodec_alloc_frame'
    pic = avcodec_alloc_frame();
          ^
src/common/ffmpeg.cpp:92:28: error: use of undeclared identifier 'CODEC_ID_NONE'; did you mean 'AV_CODEC_ID_NONE'?
    if(fmt->audio_codec == CODEC_ID_NONE)
                           ^~~~~~~~~~~~~
                           AV_CODEC_ID_NONE
/usr/local/include/libavcodec/avcodec.h:192:5: note: 'AV_CODEC_ID_NONE' declared here
    AV_CODEC_ID_NONE,
    ^
src/common/ffmpeg.cpp:163:11: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean 'AV_PIX_FMT_RGB24'?
        pixfmt = PIX_FMT_RGB24;
                 ^~~~~~~~~~~~~
                 AV_PIX_FMT_RGB24
/usr/local/include/libavutil/pixfmt.h:64:5: note: 'AV_PIX_FMT_RGB24' declared here
    AV_PIX_FMT_RGB24,     ///< packed RGB 8:8:8, 24bpp, RGBRGB...
    ^
src/common/ffmpeg.cpp:416:13: error: use of undeclared identifier 'avcodec_encode_video'; did you mean 'avcodec_encode_video2'?
        pkt.size = avcodec_encode_video(ctx, video_buf, VIDEO_BUF_LEN, f);
                   ^~~~~~~~~~~~~~~~~~~~
                   avcodec_encode_video2
/usr/local/include/libavcodec/avcodec.h:5322:5: note: 'avcodec_encode_video2' declared here
int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
    ^
src/common/ffmpeg.cpp:468:13: error: use of undeclared identifier 'avcodec_encode_audio'; did you mean 'avcodec_encode_audio2'?
        pkt.size = avcodec_encode_audio(ctx, audio_buf, frame_len,
                   ^~~~~~~~~~~~~~~~~~~~
                   avcodec_encode_audio2
/usr/local/include/libavcodec/avcodec.h:5283:5: note: 'avcodec_encode_audio2' declared here
int avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt,
    ^

PR:		214190
Obtained from:	upstream
Approved by:	maintainer timeout (2 weeks)
2016-11-18 22:00:57 +00:00
Jan Beich
70f518b2a2 emulators/kcemu: unbreak build with ffmpeg 3.x
ffmpeg.cc:79:29: error: use of undeclared identifier 'PIX_FMT_YUV420P'; did you mean 'AV_PIX_FMT_YUV420P'?
  _stream->codec->pix_fmt = PIX_FMT_YUV420P;
                            ^~~~~~~~~~~~~~~
                            AV_PIX_FMT_YUV420P
/usr/local/include/libavutil/pixfmt.h:62:5: note: 'AV_PIX_FMT_YUV420P' declared here
    AV_PIX_FMT_YUV420P,   ///< planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
    ^
ffmpeg.cc💯12: error: use of undeclared identifier 'avcodec_alloc_frame'
  _frame = avcodec_alloc_frame();
           ^
ffmpeg.cc:159:18: error: use of undeclared identifier 'avcodec_encode_video'; did you mean 'avcodec_encode_video2'?
  int out_size = avcodec_encode_video(_stream->codec, _buf, _bufsize, _frame);
                 ^~~~~~~~~~~~~~~~~~~~
                 avcodec_encode_video2
/usr/local/include/libavcodec/avcodec.h:5261:5: note: 'avcodec_encode_video2' declared here
int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
    ^
ffmpeg.cc:159:55: error: cannot initialize a parameter of type 'AVPacket *' with an lvalue of type 'byte_t *' (aka 'unsigned char *')
  int out_size = avcodec_encode_video(_stream->codec, _buf, _bufsize, _frame);
                                                      ^~~~
/usr/local/include/libavcodec/avcodec.h:5261:60: note: passing argument to parameter 'avpkt' here
int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
                                                           ^

PR:		214188
Approved by:	maintainer timeout (2 weeks)
2016-11-18 22:00:36 +00:00
Jan Beich
7b45c3b271 emulators/citra: update to s20161115
Changes:	ae2fab4...fb13bfe
2016-11-17 23:59:44 +00:00
Sean Bruno
dde039fc90 Track QEMU upstream as we approach 2.8.0 2016-11-17 18:13:07 +00:00
Rene Ladan
f2aecf8776 Reset edwin's ports, he has handed in his commit bit.
With hat:	portmgr-secretary
2016-11-16 22:55:39 +00:00
Gerald Pfeifer
264d1f5034 Update to Wine 1.9.23. This includes the following changes:
- Color font support in Direct2D.
 - More color formats in Direct3D.
 - Uninstallation fixes in MSI.
 - Various bug fixes.
2016-11-16 10:26:44 +00:00
Jan Beich
6673e3fd6a emulators/ppsspp: link to upstream issue for BROKEN 2016-11-14 20:56:45 +00:00
Alexey Dokuchaev
50c7b417e3 Do not terminate BROKEN messages with period, it is added by the framework. 2016-11-14 11:26:59 +00:00
Mark Linimon
387ced8b05 Mark as broken on various tier-2 archs.
While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
2016-11-14 07:47:48 +00:00
Dirk Meyer
3656c1ca01 - fix build with ffmpeg3
PR:		214189
2016-11-14 06:48:25 +00:00
Sean Bruno
5558ef6556 Fix build with devel/ncurses installed.
PR:	214484
Submitted by:	John Hein <z7dr6ut7gs@snkmail.com>
2016-11-14 02:58:57 +00:00
Dmitry Marakasov
65927df93c - Verbosify build
Approved by:	portmgr blanket
2016-11-12 12:46:33 +00:00
Sean Bruno
6480d047d2 Update qemu-sbruno/bsd-user to caputre a pile of memory leak abatements
in upstream QEMU.
2016-11-11 21:58:40 +00:00
Jan Beich
68036db43c Track used or drop unused devel/icu dependency
This tries to fix discrepancy between

  $ pkg rquery '%o %B' | awk '/libicu/ { print $1 }' | sort -u
  $ git grep -lF :devel/icu | sed 's,/Makefile$,,'

PR:		214384
Reported by:	tijl, stage-qa, readelf(1)
2016-11-11 11:59:55 +00:00
Rene Ladan
c5b2f9c86e Update libspectrum, fuse and fuse-utils to 1.3.1
Reported by:	portscout
2016-11-09 19:13:25 +00:00
Mark Linimon
17e48e339b The 64-bit arm arch is actually spelled 'aarch64', not 'arm64'. 2016-11-08 19:29:56 +00:00
Sean Bruno
d0151030e6 Delete duplicate distinfo lines that I inserted with make makesum.
Pointyhat fits nicely.

PR:	214309
Submitted by:	pkubaj@anongoth.pl
2016-11-08 13:57:29 +00:00
Dmitry Marakasov
8a185c6036 - Add LICENSE
- Regenerate patches
2016-11-08 11:23:32 +00:00
Mark Linimon
b7953de16f Mark as broken on arm64.
Approved by:	portmgr (tier-2 blanket)
2016-11-08 08:13:47 +00:00
Mark Linimon
16b56ac11c Mark as broken on arm64. 2016-11-08 07:43:07 +00:00
Mark Linimon
efff0353b9 Hopeless on anything other than x86. 2016-11-08 03:31:49 +00:00
Sean Bruno
192def3202 Update and track upstream QEMU 2.7.50
No changes to qemu-user are intended here, nor are there and fixes here.
2016-11-08 02:00:10 +00:00
Dmitry Marakasov
d021d9fa2b - Add LICENSE
- Add missing dependency
- Regenerate patches
2016-11-07 15:51:47 +00:00
Dmitry Marakasov
d32885c78f - Add LICENSE
- Add missing dependency
- Switch pkg-plist to DATADIR and DOCSDIR
- Regenerate patches
2016-11-07 15:27:12 +00:00
Matthew Seaman
ba3cbe6369 Winetricks is an easy way to work around problems in Wine.
It has a menu of supported games/apps for which it can do
all the workarounds automatically. It also lets you install
missing DLLs or tweak various Wine settings individually.

WWW: https://wiki.winehq.org/Winetricks

PR:		211293
Submitted by:	Nikolai Lifanov <lifanov@mail.lifanov.com>
2016-11-07 10:12:59 +00:00
Dirk Meyer
0a3cdf4e75 - use new ffmpeg ids
PR:		214189
2016-11-06 17:39:20 +00:00
Gerald Pfeifer
eefb55499a Update to Wine 1.9.22. This includes the following changes:
- Initial implementation of bitmap rendering in Direct2D.
 - More WebServices implementation.
 - A few more steps towards HID support.
 - Various bug fixes.
2016-11-06 16:11:42 +00:00
Jason E. Hale
624805d722 Convert knobs to options
Convert to USES=localbase
Add LICENSE (GPLv2+)
Remake/rename patches according to convention
Bump PORTREVISION so options are registered
2016-11-06 11:06:45 +00:00
Jung-uk Kim
d58d7e08f5 Fix modes for /compat/linux/sys.
This commit is analogous to r425303 and r425309 for /compat/linux/proc.

MFH:		2016Q4
2016-11-04 15:43:27 +00:00
Antoine Brodin
9069ac725d Apply r425303 to linux_base-f10: Fix modes for /compat/linux/proc 2016-11-04 10:37:26 +00:00
Baptiste Daroussin
61a4bde434 Fix modes for /compat/linux/proc
When linprocfs is mounted the mode set to /compat/linux/proc is set to 555
while the package said 755 meaning pkg will try to change it 755 and fail
preventing upgrade or installation of the package because linprocfs does not
support changing attributes.

Enforce it to 555 to prevent that situation
2016-11-04 08:02:48 +00:00
Tijl Coosemans
22758f2672 Remove NVIDIA option from Linux ports now that the nvidia-driver can be
installed later.
2016-11-03 21:47:46 +00:00
Mathieu Arnold
d26ef18700 Cleanup no longer needed CHMOD usage after r424898.
PR:		213743
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
2016-11-02 22:45:14 +00:00
Li-Wen Hsu
ab46678ab2 - Fix plist when DEBUG enabled on 11
Reviewed by:	jkim
Differential Revision:	https://reviews.freebsd.org/D5071
2016-11-02 05:05:20 +00:00
Jan Beich
e58d5042dc emulators/citra: update to s20161031
- Fix citra --version output

Changes:	8b833d3...ae2fab4
2016-11-01 01:28:21 +00:00
Jan Beich
e46a43b9a7 emulators/citra: update to s20161027
Changes:	https://github.com/citra-emu/citra/commit/f672c7b
2016-10-28 01:13:15 +00:00
Dmitry Marakasov
4f88f44da0 - Verbosify build
Approved by:	portmgr blanket
2016-10-26 13:55:23 +00:00
Dmitry Marakasov
1bec8d2d6a - Fix build on 11.x+ by fixing abs() issue
- Mention c++11 requirement
- Mark broken on 9.x: does not build due to lacking c++11 support

Approved by:	portmgr blanket
2016-10-25 13:45:13 +00:00
Dmitry Marakasov
19d207674a - Mark broken on 9.x: does not build:
multiboot.raw: option ROM does not begin with magic 55 aa

- Add missing files to plist

Approved by:	portmgr blanket
2016-10-24 15:35:01 +00:00
Mathieu Arnold
c6f651390a OPTIONS_SET/OPTIONS_UNSET are global variables, they cannot be used in ports Makefiles.
So, replace them with OPTIONS_SLAVE, OPTIONS_EXCLUDE, OPTIONS_DEFAULT,
where appropriate.

The ghostscript ports are doing something nasty that is certainly wrong,
but I don't want to try to understand it.

Sponsored by:	Absolight
2016-10-24 10:18:50 +00:00
Jung-uk Kim
4d2e982d84 Update to 5.1.8.
PR:		213683
Differential Revision:	https://reviews.freebsd.org/D8292
2016-10-23 19:37:28 +00:00
Jung-uk Kim
01ac95e188 Update to 5.1.8.
PR:		213683
Differential Revision:	https://reviews.freebsd.org/D8292
2016-10-23 19:32:53 +00:00
Jan Beich
902c014acd emulators/citra: list more licenses 2016-10-22 12:46:17 +00:00
Tijl Coosemans
0ad64661d5 Update grep to 2.20-5.el6_8 and use SRC_SUFX.
PR:		213264
Submitted by:	pkubaj@anongoth.pl
2016-10-22 11:46:59 +00:00
David Naylor
bfb0c41f86 emulators/i386-wine-devel: update to 1.9.21. 2016-10-22 10:48:35 +00:00
Mathieu Arnold
a0bcd2cf68 Use USES=pathfix where applicable.
PR:		213195
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D8093
2016-10-21 15:21:13 +00:00
Mathieu Arnold
eabbfd75e3 ${RM} already has -f.
PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
2016-10-21 12:51:40 +00:00
Jan Beich
e61cb19437 emulators/citra: only build on amd64 for now
JIT is only available for amd64 while non-JIT or fake JIT build isn't
yet supported.

Reported by:	pkg-fallout for aarch64
2016-10-21 12:35:17 +00:00
Raphael Kubo da Costa
366a97ec37 Reassign makc's ports back to the pool.
See "Maintainer Reset" in
https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit
was in March 31st (r412218), and his ports have been timing out since at least
July (r418155).

I also emailed him 2 weeks ago and have received no response so far.
2016-10-20 15:58:12 +00:00
Gerald Pfeifer
315b4539ad Update to Wine 1.9.21. This includes the following changes:
- Initial version of the HID minidriver.
 - Support for lists in the RichEdit control.
 - System tray improvements.
 - Various bug fixes.

Sort a number of entries in pkg-plist; all files within a given
directory should be fine now, even module %%OPTIONS%%.
2016-10-19 15:19:54 +00:00
Tijl Coosemans
1675ff649c Add Linux CentOS 7 infrastructure ports.
Mk/Uses/linux.mk changes:
- Add support for architecture neutral (noarch) distfiles.
- Add support for 64-bit only ports: set IGNORE on i386 and don't install
  32-bit compat libraries on amd64.

Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
Differential Revision:	https://reviews.freebsd.org/D7886
2016-10-19 14:50:26 +00:00
Tijl Coosemans
e7045337bf Since base r283461 /compat/linux/dev/shm must point to a tmpfs. Make
/compat/linux/dev/shm a plain directory instead of a link to /tmp so we
don't force users to mount tmpfs on /tmp.  This also makes /dev/shm a
separate namespace from /tmp.

Add libffi, needed by glib2.

PR:		207769
2016-10-19 11:06:18 +00:00
Tijl Coosemans
993ae6362e Since base r283461 /compat/linux/dev/shm must point to a tmpfs. Make
/compat/linux/dev/shm a plain directory instead of a link to /tmp so we
don't force users to mount tmpfs on /tmp.  This also makes /dev/shm a
separate namespace from /tmp.

PR:		207769
2016-10-19 10:58:48 +00:00
Jan Beich
8417d635f7 Drop r339003/r339004 cargo cult in my ports
Ninja is only fast for incremental builds, not after clobber. To keep
using it define CMAKE_NINJA in make.conf.
2016-10-17 17:58:32 +00:00
Jan Beich
3027cf2170 emulators/ppsspp: convert to GH_TUPLE/GH_SUBDIR
Keep names (except PORTNAME) expanded for better readability.
2016-10-17 17:13:14 +00:00
Rene Ladan
7345f8890d emulators/fuse-roms: add NONE license 2016-10-16 17:41:32 +00:00
Alan Somers
f51dcaa2ea Add emulators/qemu-utils
qemu-utils is a new port which installs a few miscellaneous qemu utilities
that are useful even without emulation capabilities. It is useful where
emulation is not needed, because it has far fewer dependencies than qemu.
It is equivalent to the Debian package of the same name.

Reviewed by:	sbruno, brd
Approved by:	brd (ports)
Sponsored by:	Spectra Logic Corp
Differential Revision:	https://reviews.freebsd.org/D8038
2016-10-14 20:34:26 +00:00
Jan Beich
188b42dc30 emulators/citra: unbreak on < 10.2 after r423781
In file included from externals/dynarmic/src/frontend/disassembler/disassembler_arm.cpp:15:
In file included from externals/dynarmic/src/./frontend/decoder/arm.h:18:
In file included from externals/dynarmic/src/./frontend/decoder/decoder_detail.h:14:
externals/dynarmic/src/./common/mp.h:34:27: fatal error: no template named 'tuple_element_t' in namespace 'std'; did you mean 'tuple_element'?
        using type = std::tuple_element_t<ParameterIndex, std::tuple<Args...>>;
                     ~~~~~^~~~~~~~~~~~~~~
                          tuple_element
/usr/include/c++/v1/__tuple:44:62: note: 'tuple_element' declared here
template <size_t _Ip, class _Tp> class _LIBCPP_TYPE_VIS_ONLY tuple_element;
                                                             ^

Reported by:	pkg-fallout
2016-10-13 14:05:42 +00:00
Jan Beich
29c18df37d emulators/citra: oops, back out r423781 2016-10-13 13:38:07 +00:00
Jan Beich
43ec5d91b8 emulators/citra: unbreak on < 10.2 after r423781
USES=compiler cannot pull newer C++14 compatible libc++ version.

In file included from externals/dynarmic/src/frontend/disassembler/disassembler_arm.cpp:15:
In file included from externals/dynarmic/src/./frontend/decoder/arm.h:18:
In file included from externals/dynarmic/src/./frontend/decoder/decoder_detail.h:14:
externals/dynarmic/src/./common/mp.h:34:27: fatal error: no template named 'tuple_element_t' in namespace 'std'; did you mean 'tuple_element'?
        using type = std::tuple_element_t<ParameterIndex, std::tuple<Args...>>;
                     ~~~~~^~~~~~~~~~~~~~~
                          tuple_element
/usr/include/c++/v1/__tuple:44:62: note: 'tuple_element' declared here
template <size_t _Ip, class _Tp> class _LIBCPP_TYPE_VIS_ONLY tuple_element;
                                                             ^

Reported by:	pkg-fallout
2016-10-13 13:30:52 +00:00
David Naylor
c4640a6313 emulators/i386-wine-devel: update to 1.9.20. 2016-10-12 06:14:21 +00:00
David Naylor
6419394661 i386-wine: update to 1.8.5. 2016-10-12 04:24:18 +00:00
Mark Linimon
1e7d9be3cf Change from NOT_FOR to ONLY_FOR. This fails to build on both armv6 and
aarch64 and was never tried on most other architectures.
2016-10-12 03:36:11 +00:00
Jan Beich
cc4cd2f8ef emulators/citra: don't use GCC to build on 10.x
libstdc++ in ports is still built against libsupc++ rather than
libcxxrt, so it's unsafe to use together libc++. This means USE_GCC is
practically forbidden with C++ ports on >= 10.0 systems.
2016-10-11 16:43:36 +00:00
Jan Beich
41265131e5 emulators/citra: add new port
Citra is an experimental open-source Nintendo 3DS emulator/debugger
written in C++. It is written with portability in mind, with builds
actively maintained for Windows, Linux and OS X. Citra only emulates a
subset of 3DS hardware, and therefore is generally only useful for
running/debugging homebrew applications. At this time, Citra is even
able to boot several commercial games! Most of these do not run to a
playable state, but we are working every day to advance the project
forward.

https://citra-emu.org
2016-10-10 20:15:36 +00:00
Jan Beich
65eb5561e3 emulators/ppsspp: unbreak _OFF helpers after r422825 2016-10-10 16:21:44 +00:00
Boris Samorodov
156c6cb357 Thank you Uffe for your past work on FreeBSD ports! Hope you'll find time
to contribute to FreeBSD in the future. Reset Uffe's ports maintainership.

Requested by:	 Uffe Jakobsen <uffe@uffe.org> (maintainer, via e-mail)
2016-10-09 22:01:34 +00:00
Gerald Pfeifer
64b6bb4711 Update to Wine 1.8.5 which mostly brings a number of bug fixes, and
a new include file include/wine/windows/wlanapi.h.

On the way, properly sort two existing files in pkg-plist.
2016-10-08 09:17:22 +00:00
Jung-uk Kim
0eb338e96d Exclude DEBUG and OPENGL from options for -nox11. 2016-10-05 21:09:51 +00:00
Jung-uk Kim
b4f47b1ccb Fix the previous commit. It was incomplete.
Pointy hat:	jkim
2016-10-05 20:57:06 +00:00
Jung-uk Kim
7eaed1bd50 Add newly added slave ports to CONFLICTS_INSTALL. 2016-10-05 20:49:35 +00:00
Jung-uk Kim
bc23624f99 Add the newly added emulators/virtualbox-ose-nox11 to CONFLICTS_INSTALL. 2016-10-05 20:13:07 +00:00
Jung-uk Kim
0c57c4365f Sync. style with emulators/virtualbox-ose-nox11. 2016-10-05 19:56:26 +00:00
Jung-uk Kim
02d28cdba8 - Rename emulators/virtualbox-ose-lite to emulators/virtualbox-ose-nox11 and
assign its maintainership to vbox@. [1]
- Use OPTIONS_EXCLUDE to simplify its master port.

Approved by:	alfred (maintainer) [1]
2016-10-05 19:55:24 +00:00
Steve Wills
9188f03c34 emulators/virtualbox-ose-additions-nox11: use proper option
Pointyhat to:	swills
Reported by:	adamw, mat
2016-10-05 12:09:58 +00:00
Rene Ladan
6a797204b8 Update libspectrum,fuse,fuse-utils to version 1.3.0
Distfiles verified against authors GPG key.
2016-10-05 11:10:17 +00:00
Steve Wills
45af6bb0e2 emulators/virtualbox-ose-additions-nox11: create port
Create a port for virtualbox-ose-additions with x11 option disabled
2016-10-05 01:03:04 +00:00
Steve Wills
8402e33188 emulators/virtualbox-ose-additions: prepare for -nox11 slave port 2016-10-05 01:01:29 +00:00
Gerald Pfeifer
35ee5f179a Update to Wine 1.9.20. This includes the following changes:
- Reimplementation of the clipboard API.
 - Message handling in WebServices.
 - Many more API Set libraries.
 - Various bug fixes.

Sort the fonts from Staging into the others in pkg-plist.
2016-10-03 07:11:54 +00:00
Dmitry Marakasov
7b4cb871d6 - Update devel/sfml to 2.4
- Add LICENSE
- Bump dependent ports due to shlib versioning scheme change
  - Add missing dependency to games/slade
2016-10-01 02:15:10 +00:00
Tijl Coosemans
1ee4da6dd1 Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.
USES=localbase:ldflags can be used to set LDFLAGS.  Normally LDFLAGS
appears too early on the command line causing some ports to link with
their own libraries in LOCALBASE (if installed) instead of WRKSRC.

Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as
possible after anything a port Makefile might set.  Use _USES_POST
instead of .include in libedit.mk and libarchive.mk so things like
'USES=libedit localbase:ldflags' work correctly.

Fix some issues with LIBS in some ports.

Switch ports that don't support LIBS to localbase:ldflags.

PR:		212987
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2016-09-30 19:24:30 +00:00
Jan Beich
adb3fa4aa4 multimedia/libvpx: update 1.6.0
ABI is incompatible... or not? SONAME has changed but the removed vp10
symbols weren't actually exposed (and still aren't).

Note, FreeBSD 9.x now builds with Clang 3.4 because GCC 4.2 fails:

  vp9/encoder/x86/vp9_frame_scale_ssse3.c: In function 'eight_tap_row_ssse3':
  vp9/encoder/x86/vp9_frame_scale_ssse3.c:93: internal compiler error: in simplify_binary_operation_1, at simplify-rtx.c:2563
  Please submit a full bug report,
  with preprocessed source if appropriate.
  See <URL:http://gcc.gnu.org/bugs.html> for instructions.

Changes:	https://chromium.googlesource.com/webm/libvpx/+log/v1.5.0..v1.6.0
ACC report:	https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.5.0_to_1.6.0/compat_report.html
2016-09-30 01:15:10 +00:00
Jan Beich
406dde82e3 emulators/ppsspp: hide QT* options in master port
Pointyhat to:	jbeich (r422825)
2016-09-29 01:52:05 +00:00
Jan Beich
b59e043cde emulators/ppsspp: enslave GUI options
Catering package-only users that want Qt4 flavor or just SDL UI.
COMMENT and pkg-descr (both plural) can be improved in future.
2016-09-27 18:25:34 +00:00
Tijl Coosemans
48f4591035 - Update devel/icu to 57.1.
- Clean up the Makefile.
- Follow some upstream recommendations (--with-data-packaging=archive,
  --disable-renaming, -DICU_NO_USER_DATA_OVERRIDE).
- Patch makefiles to install static libraries with INSTALL_DATA so they
  aren't stripped.
- Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc.
- Fix endianness detection in ICU.  The code wanted to use BYTE_ORDER
  defined in machine/endian.h, but this isn't visible because ICU is
  compiled with _XOPEN_SOURCE.  Patch the code to use _BYTE_ORDER instead.
- Compile ICU with C++11 compiler to enable move constructors.
- Patch ICU to fix a problem with atomics in the case of a C++11 compiler
  without C++11 header <atomic> (like Clang on FreeBSD 9).
- Bump all ports that depend on it due to library version change.
- Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU
  pkgconfig files.
- Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs
  a C++11 runtime library now.  Add this to all ports that depend on it
  so their executables load the right libstdc++.so on FreeBSD 9.

PR:		205120
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2016-09-24 11:06:57 +00:00
David Naylor
914db6ccbd emulators/i386-wine-devel: update to 1.9.19.
- Add a noop command in the ${PLIST} target, to detect corrupted packages
2016-09-20 19:27:02 +00:00
David Naylor
be4238fc70 emulators/i386-wine-staging: fix distinfo for FBSD 9
- Regenerate the pkg-plist (fixes "libgcc_s.so.1" missing errors).

Reported by:	Dwayne MacKinnon <dmk@ncf.ca>, pkg-fallout
2016-09-19 18:10:31 +00:00
Gerald Pfeifer
c71101ba7d Update to Wine 1.9.19. This includes the following changes:
- Initial version of a udev bus driver for HID.
 - Various improvements in joystick support.
 - Initial implementation of DC rendering in Direct2D.
 - Improved metafile support in GDI+.
 - Various bug fixes.
2016-09-19 07:55:36 +00:00
Jan Beich
7c46d83484 emulators/ppsspp: update to 1.3
Changes:	http://ppsspp.org/#news
2016-09-18 13:00:59 +00:00
David Naylor
b7ca9a92d2 emulators/i386-wine-devel: update to 1.9.18.
- Add support for -current (aka "12").
2016-09-17 17:32:54 +00:00
David Naylor
5cb352ebc1 emulators/i386-wine: update to 1.8.4_1.
- Add support for -current (aka "12").
2016-09-17 17:31:39 +00:00
Dmitry Marakasov
26f1832538 - Remove always false condition 2016-09-16 21:01:21 +00:00
Jung-uk Kim
352492a6dd Remove a redundant PLIST_SUB. 2016-09-16 19:47:10 +00:00
Jung-uk Kim
ec86f99420 Fix typos in pkg-plist. 2016-09-16 19:16:43 +00:00
Jung-uk Kim
7006249e8e Add support for Python 3.x.
PR:		212691
2016-09-16 18:48:04 +00:00
Steve Wills
149ba7338a Unmark broken on powerpc64
These ports built successfully
2016-09-15 01:41:28 +00:00
Mathieu Arnold
dbbfc7889a GOOGLE_CODE has gone away.
- If a port has another upstream, remove GOOGLE_CODE
- If a port only has GOOGLE_CODE mark it BROKEN

Some ports have a local mirror configured but for security reasons, it
is not considered upstream.

Sponsored by:	Absolight
2016-09-14 15:59:34 +00:00
Rene Ladan
f710e90d77 Update libspectrum and friends to version 1.2.2
Distfiles verified against authors GPG signature
2016-09-13 18:01:05 +00:00
Jung-uk Kim
2e7886d2ec Bump PORTREVISION for r421979. Although we usually do not update it for
non-default option changes, some users may benefit from it.

Requested by:	mat
2016-09-13 17:11:55 +00:00
Jung-uk Kim
f68519cd3b Do not override libGL.so.1 for libglx.so to let X server load it properly. 2016-09-13 05:33:11 +00:00
Jung-uk Kim
1563c9ac55 Update to 5.1.6. 2016-09-12 22:52:05 +00:00
Steve Wills
62a1fbb41a emulators/open-vm-tools: Fix build with clang 3.9.0
PR:		212426
Submitted by:	dim
2016-09-12 01:37:19 +00:00
John Marino
46091cd7dc emulators/qemu-devel: Document SSL requirement and set LDFLAGS for it
Approved by:	SSL blanket
2016-09-10 17:56:22 +00:00
Dmitry Marakasov
30a00f2227 Most commonly used build systems support silent builds, when they
hide actual commands executed and only show short summary line (like
"CC foo.c"). CMake and ninja enable this by default, some autotools
using ports do as well. This is unacceptable because we need complete
build logs at any time, so we now switch to verbose build logs
unconditionally. Note that this change deliberately affects ALL
builds and not only package builds on cluster, because we need to
be sure that user experiencing failure can always provide informative
build log regardless of settings and without rerunning the build.

Change summary:

- Always do verbose builds for cmake, ninja and GNU configure (the
  latter includes check if --disable-silent-rules is actually supported
  by the configure script; there are isolated cases when it's not true)
- Remove CMAKE_VERBOSE, NINJA_VERBOSE and
  CONFIGURE_ARGS=--disable-silent-rules from all ports which set them
  for this is no longer needed
- Revert hacks for --disable-silent-rules support priorly committed
  to biology/ncbi-blast+ and net-p2p/mldonkey - no longer needed as well

Submitted by:	amdmi3
Reviewed by:	mat
Exp-run by:	antoine
Approved by:	portmgr (mat, antoine)
Differential Revision:	D7534
2016-09-09 19:42:46 +00:00
Jung-uk Kim
69aa96343a Attempt to fix build with LibreSSL.
PR:		212473
2016-09-08 05:14:46 +00:00
Jung-uk Kim
e60871787d Update to 5.1.4. 2016-09-07 21:35:38 +00:00
Tijl Coosemans
e7f2ff0875 Fix make extract when PACKAGE_BUILDING is defined and replace ${SRC_SUFX}
with .src.rpm for fmake.
2016-09-06 17:26:54 +00:00
Tijl Coosemans
46294697c1 Add linux_base-c7 port that installs CentOS 7 base packages.
PR:		210926
Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
2016-09-05 20:10:30 +00:00
Tijl Coosemans
82a87de90c - Replace Mk/bsd.linux-apps.mk and Mk/bsd.linux-rpm.mk with
Mk/Uses/linux.mk.
- Replace USE_LINUX=yes with USES+=linux and USE_LINUX=(.*) with
  USES+=linux:\1 in all ports.
- Replace USE_LINUX_APPS with USE_LINUX in all ports.
- Use INSTALL_SCRIPT instead of INSTALL_PROGRAM to install scripts in some
  ports.
- When USE_LINUX_RPM is defined, simplify the way DISTFILES and EXTRACT_ONLY
  are defined.
- Remove BRANDELF_DIRS and BRANDELF_FILES handling.  In the very rare cases
  that it is still necessary ports can run ${BRANDELF} from post-patch.
- Remove AUTOMATIC_PLIST handling.  Only one port used it.
- Fix Linux MASTER_SITES.
- Replace OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS with
  default versions framework.
- bsd.port.mk:
  - Move Linux related bits to Uses/linux.mk, except USE_LINUX_PREFIX.
  - Put USE_LINUX_PREFIX handling after USES processing.
  - Define DOCSDIR, DATADIR, etc. after handling USE_LINUX_PREFIX so it can
    give these variables a different default value.
  - When a package needs to run Linux ldconfig check before installation if
    Linux support is enabled.
- emulators/linux_base-*:
  - Use USES=linux and remove duplication.
  - Remove files/lp.  FreeBSD or CUPS lp(1) should work.
  - Remove files/yp.conf.  No longer seems to be used.
  - Remove pkg-deinstall and move pkg-install into pkg-plist.
  - Update pkg-descr and pkg-message.
  - Fix handling of ldconfig cache in pkg-plist.
- devel/fb-adb: Use a Linux shell to run a Linux script but patch the script
  to use FreeBSD mkdir so mkdir -p $path creates $path and not
  /compat/linux/$path.

PR:		211645
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2016-09-05 19:23:42 +00:00
Gerald Pfeifer
b951b19ea5 Update to Wine 1.9.18. This includes the following changes:
- Support for multiple kernel drivers in a single process.
 - More WebServices reader support.
 - Various improvements in joystick support.
 - Some more work towards the Direct3D command stream.
 - GDI performance improvements.
 - Improved IME window handling.
 - Compatibility fixes in the clipboard support.
 - Various bug fixes.
2016-09-05 18:20:23 +00:00
Gerald Pfeifer
82f4f29734 Backport from wine-devel (r414806):
Include GNUTLS in the default options since apparently it does help
with Evernote and World of Warcraft.

And it also seems to help with Internet Explorer and Microsoft Office. [1]

Bump PORTREVISION.

PR:		208234
Reported by:	crees [1]
2016-08-29 15:07:48 +00:00
Muhammad Moinur Rahman
49298d0d19 emulators/qemu: Unbreak in 11+ [1]
- Fix ncurses build uses to use base version and remove from CONFIGURE_ARGS
  for OPTIONS usage [2]

PR:		212057 [1] 211973 [2]
Submitted by:	mat [1]	ilavsky.martin@gmail.com [2]
2016-08-27 17:15:50 +00:00
David Naylor
5014091fdb emulators/i386-wine: update to 1.8.4 2016-08-26 20:17:44 +00:00
David Naylor
679a83f16e emulators/i386-wine-devel: update to 1.9.17. 2016-08-26 20:16:48 +00:00
Baptiste Daroussin
5cc0ee357b Remove kqemu-kmod{,-devel}
The are broken on recent FreeBSD, they are not supported by any qemu version,
they do not build with recent binutils (2.27)
2016-08-26 12:21:39 +00:00
Brooks Davis
f1571af504 Update to a fresh snapshot. 2016-08-24 18:20:09 +00:00
Gerald Pfeifer
dceac0bc8e Configure without --without-xinerama which I missed from r420654 since
it was not part of the respective patch in wine-devel.
2016-08-23 10:14:41 +00:00
Gerald Pfeifer
926886f8ad Backport from emulators/wine-devel:
Require/build with Xinerama support (which has been explicitly disabled
before to ensure reproducible builds).  Without this, some programs would
incorrectly show full screen as a wide window covering 2 monitors.

PR:		210039
Submitted by:	Henry Hu <henry.hu.sh@gmail.com>
2016-08-23 10:11:17 +00:00
Gerald Pfeifer
45575d74e1 Update to Wine 1.8.4 which brings
- various bug fixes, and.
 - a few more cards added to the GPU description table.

Similar to 1.8.3 and a bit surprisingly a new include file
include/wine/windows/ddk/ndis.h.
2016-08-23 09:54:33 +00:00
Gerald Pfeifer
73992bf7c8 Update to Wine 1.9.17. This includes the following changes:
- Better exception handling on 64-bit.
 - Various improvements in joystick support.
 - Some more stream support in the C++ runtime.
 - Font embedding improvements.
 - More metafile support in GDI+.
 - Various bug fixes.
2016-08-22 09:26:35 +00:00
Muhammad Moinur Rahman
3241ffeaf1 emulators/qemu: Update version 2.5.1.1=>2.6.1
- Remove BSD_USER related codes
- Add NCURSES support [1]
- Fix STATIC_LINKS code to not build with X11 support

PR: 		211973 [1]
Submitted by:	ilavsky.martin@gmail.com [1]
2016-08-19 20:52:57 +00:00
Johan van Selst
af57ac850f Update OpenMSX Catapult to 0.13.0 2016-08-16 10:51:32 +00:00
Kurt Jaeger
271cb25988 emulators/visualboyadvance-m: 1.8.0 -> 2.0.0b2
- patted portlint
- patches are now makepatch compliant

PR:		210058
Changes:	http://vba-m.com/forum/showthread.php?tid=1037&pid=6091#pid6091
		http://vba-m.com/forum/showthread.php?tid=1036&pid=6090#pid6090
Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
Reviewed by:	pawel
Approved by:	Allison N. Reid <root@cooltrainer.org> (maintainer)
2016-08-13 15:31:43 +00:00
Jung-uk Kim
c2fc3c5f4c Temporarily disable AVX support for guest. It is unstable for FreeBSD.
PR:		211651
2016-08-13 04:05:35 +00:00
David Naylor
76b30df9c6 emulators/i386-wine-devel: update to 1.9.16 2016-08-09 07:46:38 +00:00
Gerald Pfeifer
02dffe3d8b Update to Wine 1.9.16. This includes the following changes:
- Performance improvements in JavaScript.
 - More progress towards the Direct3D command stream.
 - More shader instructions in Direct3D.
 - Performance improvements in GDI.
 - Various bug fixes.
2016-08-08 09:55:32 +00:00
Bryan Drewery
279114665e Remove PORTSDIR from dependency 2016-08-04 17:22:46 +00:00
Jung-uk Kim
2b81980bdb Fix build with non-base OpenSSL without MD2 support.
PR:		211524
2016-08-02 20:43:05 +00:00
Tijl Coosemans
b3107f563d Use LINUX_REPO_ARCH instead of LINUX_RPM_ARCH to define DISTINFO_FILE and PLIST. 2016-08-01 22:23:40 +00:00
Johan van Selst
748e31982b Update to OpenMSX 0.13.0
https://raw.githubusercontent.com/openMSX/openMSX/RELEASE_0_13_0/doc/release-notes.txt
2016-08-01 20:23:20 +00:00
David Naylor
74de6fe3ce emulators/i386-wine-devel: update to 1.9.15. 2016-08-01 18:59:55 +00:00
Tijl Coosemans
21653fcc78 Use LINUX_REPO_ARCH instead of LINUX_RPM_ARCH when setting DISTINFO_FILE
and PLIST for Linux ports.  LINUX_RPM_ARCH is the CPU targetted by a
package and LINUX_REPO_ARCH is like our ARCH which is more suitable.  This
only affects Centos 6 ports because they are the only ones where
LINUX_REPO_ARCH != LINUX_RPM_ARCH.
2016-08-01 13:07:14 +00:00
Roger Pau Monné
27734a12cb xen: apply XSA-{182/183/184}
Sponsored by:	Citrix Systems R&D
PR:		211482
2016-08-01 08:35:54 +00:00
Sean Bruno
f3948c56b8 Update qemu-sbruno to upstream.
Add patch to fixup error message from kevent() emulation:
 	kevent: failed (Bad address)

Submitted-by: Mikail Urankar <mikael.urankar@gmail.com>
2016-07-28 16:18:47 +00:00
Jung-uk Kim
14e4d38019 Allow X server to load GLX extension. 2016-07-27 03:51:19 +00:00
Jung-uk Kim
e1f246dff3 Remove fake DRM and install OpenGL wrappers. 2016-07-26 21:49:12 +00:00
Jung-uk Kim
d271b01c94 Disable TSC measurement thread. It causes a panic with INVARIANTS kernel
option.  In fact, I doubt that it works on FreeBSD.
2016-07-25 23:38:31 +00:00
Jung-uk Kim
edd50fc858 Add a missing file for OPENGL option. 2016-07-25 23:15:08 +00:00
Jung-uk Kim
49083fa35c Do not load vboxvideo.ko from vboxguest script. DRI support was removed
from the X.Org vboxvideo driver.

https://www.virtualbox.org/changeset/59194

PR:		211373
2016-07-25 22:34:21 +00:00
Gerald Pfeifer
1718601ecf Update to Wine 1.9.15. This includes the following changes:
- More shader instructions in Direct3D.
 - Performance improvements in GDI.
 - Active Scripting improvements.
 - Additional stream support in the C++ runtime.
 - Various bug fixes.
2016-07-25 09:49:09 +00:00
Danilo Egea Gondolfo
8227aa0aee - Update to 0.65 2016-07-24 20:26:44 +00:00
Jung-uk Kim
8c6cb1ade9 Fix build with ports OpenSSL. 2016-07-24 01:55:39 +00:00
Rene Ladan
a8637c17fc Update libspectrum and Fuse to 1.2.1 2016-07-23 15:31:41 +00:00
Jung-uk Kim
3721902bc8 Update to 5.0.26. 2016-07-22 20:28:01 +00:00
Mathieu Arnold
e50dc2a336 Cleanup $() variables in ports Makefiles.
Mostly replace with ${}, but sometime, replace with $$() because it is
what was intended in the first place. (I think.)

Sponsored by:	Absolight
2016-07-20 15:33:20 +00:00
Dirk Meyer
3561a46f28 - update libgd to 2.2.2
- new MASTER_SITES
- add security patch
PR:		210913
Submitted by:	Piotr Kubaj
MFH:		2016Q3
Security: CVE-2015-8874
Security: CVE-2016-3074
Security: http://www.openwall.com/lists/oss-security/2016/07/12/4
2016-07-20 09:33:31 +00:00
Mathieu Arnold
f899c758a6 When there is a do-install target, do not use a post-install target, do
everything at once.  Sometime, rename post-install into a options helper
target.

I did not fix ports that were such a mess that I could not figure out
what they really wanted to do.  I also did not change ports that had
some version of an auto-plist code in post-install, for the same reason.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-19 11:04:13 +00:00
David Naylor
c51263fbe2 emulators/i386-wine-devel: update to 1.9.14 2016-07-19 06:22:43 +00:00
Gerald Pfeifer
d80ebd4e91 Update to Wine 1.9.14. This includes the following changes:
- More Shader Model 5 support in Direct3D.
 - Some more write support in WebServices.
 - Performance improvements in GDI.
 - Some more progress towards the Direct3D command stream.
 - Various bug fixes.
2016-07-17 03:07:43 +00:00
David Naylor
f4f4242914 emulators/i386-wine-devel: fix gecko dependency bump.
PR:		210740, 219095
Reported by:	Piotr Kubaj <pkubaj@anongoth.pl>, Ivan Klymenko <fidaj@ukr.net
MFH:		2016Q3
2016-07-13 15:38:04 +00:00
Jung-uk Kim
e61ac9c171 Allow overriding MAINTAINER from slave ports. 2016-07-12 18:55:35 +00:00
Sean Bruno
30cb462b0d Update qemu-sbruno/qemu-static-user to track upstream development.
Change the way qemu-user-static builds with relationship to glib20 (ian@)

Update a couple of patches for changes to include file locations.
2016-07-12 15:17:44 +00:00
Jan Beich
cfbc4cd8f8 emulators/ppsspp: unbreak runtime on DragonFly
$ ppsspp
Unable to initialize SDL: SDL not built with joystick support
2016-07-09 07:31:13 +00:00
Ganael LAPLANCHE
0fcacbb37c Fix build on -CURRENT now that LIBUSB_API_VERSION is defined 2016-07-08 10:09:14 +00:00
Mathieu Arnold
7acca7e902 Bump PORTREVISION for the icu revert.
This time not bumping lang/php70, but devel/php70-intl which is the one
really depending on icu.

PR:		205120
With hat:	portmgr
Sponsored by:	Absolight
2016-07-06 22:10:14 +00:00
Pietro Cerutti
fb8d8ab5f9 devel/icu: bump PORTREVISION on dependent ports 2016-07-06 07:34:12 +00:00
Alfred Perlstein
1998ffd0df virtualbox-ose-lite minimal deps for packaging
This package has minimal deps, only udp server and
vncserver are required.

This works really nicely for someone who just wants
to run headless vms or the VBoxManage tools without
bloat.
2016-07-05 08:06:10 +00:00
Rene Ladan
19f31a471b Remove expired ports without open PRs:
2016-07-04 security/openpgpsdk: Broken for more than 6 months
2016-07-04 security/radiusniff: Broken for more than 6 months
2016-07-04 security/pear-Auth_OpenID: Broken for more than 6 months
2016-07-04 security/sshit: Broken for more than 6 months
2016-07-04 security/ifd-slb_rf60: Broken for more than 6 months
2016-07-04 security/rainbowcrack: Broken for more than 6 months
2016-07-04 security/vlog: Broken for more than 6 months
2016-07-04 security/cryptstring: Broken for more than 6 months
2016-07-04 x11/libdnd: Broken for more than 6 months
2016-07-04 x11/xlupe: Broken for more than 6 months
2016-07-04 x11/xco: Broken for more than 6 months
2016-07-04 x11/xclick: Broken for more than 6 months
2016-07-04 devel/ocfpcsc: Broken for more than 6 months
2016-07-04 devel/dits: Broken for more than 6 months
2016-07-04 devel/ruby-cache: Broken for more than 6 months
2016-07-04 devel/rapidsvn: Broken for more than 6 months
2016-07-04 devel/svnkit: Broken for more than 6 months
2016-07-04 devel/py-EnthoughtBase: Broken for more than 6 months
2016-07-04 devel/cl-uffi: Broken for more than 6 months
2016-07-04 devel/ruby-event-loop: Broken for more than 6 months
2016-07-04 devel/libqxt: Broken for more than 6 months
2016-07-04 devel/dasm: Broken for more than 6 months
2016-07-04 devel/libopendaap: Broken for more than 6 months
2016-07-04 devel/cl-uffi-sbcl: Depends on expiring devel/cl-uffi
2016-07-04 devel/cvs2p4: Broken for more than 6 months
2016-07-04 devel/bufferpool: Broken for more than 6 months
2016-07-04 devel/ifd-test: Broken for more than 6 months
2016-07-04 devel/eric4: Broken for more than 6 months
2016-07-04 devel/uclmmbase: Broken for more than 6 months
2016-07-04 devel/obfuscatejs: Broken for more than 6 months
2016-07-04 devel/oniguruma: Broken for more than 6 months
2016-07-04 devel/libbnr: Broken for more than 6 months
2016-07-04 devel/c4: Broken for more than 6 months
2016-07-04 devel/memcheck: Broken for more than 6 months
2016-07-04 devel/liblcfg: Broken for more than 6 months
2016-07-04 devel/omake: Broken for more than 6 months
2016-07-04 devel/svndelta: Broken for more than 6 months
2016-07-04 devel/papp: Broken for more than 6 months
2016-07-04 devel/mk: Broken for more than 6 months
2016-07-04 devel/avltree: Broken for more than 6 months
2016-07-04 devel/cbind: Broken for more than 6 months
2016-07-04 devel/tclgetopts: Broken for more than 6 months
2016-07-04 devel/antlrworks: Broken for more than 6 months
2016-07-04 devel/acme: Broken for more than 6 months
2016-07-04 devel/libopensync022: Broken for more than 6 months
2016-07-04 archivers/epkg: Broken for more than 6 months
2016-07-04 print/enscriptfonts: Broken for more than 6 months
2016-07-04 print/mup: Broken for more than 6 months
2016-07-04 lang/lua-mode.el: Broken for more than 6 months
2016-07-04 lang/s9fes: Broken for more than 6 months
2016-07-04 lang/alisp: Broken for more than 6 months
2016-07-04 lang/intel2gas: Broken for more than 6 months
2016-07-04 lang/stalin: Broken for more than 6 months
2016-07-04 french/eric4: Depends on expiring devel/eric4
2016-07-04 textproc/exslt: Broken for more than 6 months
2016-07-04 textproc/xt: Broken for more than 6 months
2016-07-04 textproc/ssddiff: Broken for more than 6 months
2016-07-04 textproc/xslint: Broken for more than 6 months
2016-07-04 textproc/cbedic: Broken for more than 6 months
2016-07-04 textproc/tralics: Broken for more than 6 months
2016-07-04 textproc/docbookide.el: Broken for more than 6 months
2016-07-04 textproc/glpi-plugins-AdditionalReports: Broken for more than 6 months
2016-07-04 textproc/tdhkit: Broken for more than 6 months
2016-07-04 textproc/p5-Groonga-API: Broken for more than 6 months
2016-07-04 textproc/glpi-plugins-DataInjection: Broken for more than 6 months
2016-07-04 dns/ldnsm: Broken for more than 6 months
2016-07-04 japanese/guesswork-classic: Broken for more than 6 months
2016-07-04 japanese/texinfo: Broken for more than 6 months
2016-07-04 japanese/jyuroku: Broken for more than 6 months
2016-07-04 japanese/mtools: Broken for more than 6 months
2016-07-04 palm/pdbar: Broken for more than 6 months
2016-07-04 graphics/gplot: Broken for more than 6 months
2016-07-04 graphics/white_dune: Broken for more than 6 months
2016-07-04 graphics/whirlgif: Broken for more than 6 months
2016-07-04 graphics/libaux: Broken for more than 6 months
2016-07-04 graphics/import-pictures: Broken for more than 6 months
2016-07-04 math/xgobi: Broken for more than 6 months
2016-07-04 math/fricas: Broken for more than 6 months
2016-07-04 math/dcdflib: Broken for more than 6 months
2016-07-04 math/libneural: Broken for more than 6 months
2016-07-04 math/open-axiom: Broken for more than 6 months
2016-07-04 irc/nefarious: Broken for more than 6 months
2016-07-04 irc/slirc: Broken for more than 6 months
2016-07-04 irc/ratbox-respond: Broken for more than 6 months
2016-07-04 irc/qwebirc: Broken for more than 6 months
2016-07-04 biology/platon: Broken for more than 6 months
2016-07-04 news/slnr: Broken for more than 6 months
2016-07-04 science/jmol: Broken for more than 6 months
2016-07-04 net/nstxd: Broken for more than 6 months
2016-07-04 net/sprinkle: Broken for more than 6 months
2016-07-04 editors/ssam: Broken for more than 6 months
2016-07-04 editors/fb: Broken for more than 6 months
2016-07-04 misc/quotes: Broken for more than 6 months
2016-07-04 misc/boxquote.el: Broken for more than 6 months
2016-07-04 misc/pypanda: Broken for more than 6 months
2016-07-04 misc/cuecat: Broken for more than 6 months
2016-07-04 deskutils/displaycalibrator: Broken for more than 6 months
2016-07-04 german/eric4: Depends on expiring devel/eric4
2016-07-04 multimedia/vic: Depends on expiring devel/uclmmbase
2016-07-04 multimedia/ggrab: Broken for more than 6 months
2016-07-04 emulators/dynamips: Broken for more than 6 months
2016-07-04 emulators/dynamips-devel: Broken for more than 6 months
2016-07-04 emulators/sim6811: Broken for more than 6 months
2016-07-04 emulators/minivmac: Broken for more than 6 months
2016-07-04 cad/qcad-partslib: Broken for more than 6 months
2016-07-04 comms/dump1090_mr: Broken for more than 6 months
2016-07-04 x11-fm/asfiles: Depends on expiring x11/libdnd
2016-07-04 x11-fonts/fonts-te: Broken for more than 6 months
2016-07-04 sysutils/rsyncmanager: Broken for more than 6 months
2016-07-04 sysutils/jfbterm: Broken for more than 6 months
2016-07-04 sysutils/daedalus: Broken for more than 6 months
2016-07-04 sysutils/pcfclock: Broken for more than 6 months
2016-07-04 sysutils/vlogger: Broken for more than 6 months
2016-07-04 sysutils/bontmia: Broken for more than 6 months
2016-07-04 mail/pop3gwd: Broken for more than 6 months
2016-07-04 mail/mailtray: Broken for more than 6 months
2016-07-04 mail/pflogstats: Broken for more than 6 months
2016-07-04 mail/exact: Broken for more than 6 months
2016-07-04 mail/wmpop3: Broken for more than 6 months
2016-07-04 mail/qmail-conf: Broken for more than 6 months
2016-07-04 mail/gld: Broken for more than 6 months
2016-07-04 mail/dsbl-testers: Broken for more than 6 months
2016-07-04 mail/vqregister: Broken for more than 6 months
2016-07-04 mail/atmail: Broken for more than 6 months
2016-07-04 mail/ml: Broken for more than 6 months
2016-07-04 net-im/icb: Broken for more than 6 months
2016-07-04 net-im/cicquin: Broken for more than 6 months
2016-07-04 net-im/pidgin-manualsize: Broken for more than 6 months
2016-07-04 net-im/pidgin-rhythmbox: Broken for more than 6 months
2016-07-04 russian/eric4: Depends on expiring devel/eric4
2016-07-04 russian/fortune-bashorgru: Broken for more than 6 months
2016-07-04 www/xpi-clearfields: Broken for more than 6 months
2016-07-04 www/pecl-varnish: Broken for more than 6 months
2016-07-04 www/py-requests-oauth-hook: Broken for more than 6 months
2016-07-04 www/hudson: Broken for more than 6 months
2016-07-04 www/xpi-mldonkey: Broken for more than 6 months
2016-07-04 www/xpi-cookiesafe: Broken for more than 6 months
2016-07-04 www/trac-mastertickets: Broken for more than 6 months
2016-07-04 www/dotclear: Broken for more than 6 months
2016-07-04 www/ruby-wgettsv: Broken for more than 6 months
2016-07-04 www/wwwstat: Broken for more than 6 months
2016-07-04 www/xpi-prism: Broken for more than 6 months
2016-07-04 www/xpi-fasterfox: Broken for more than 6 months
2016-07-04 www/siteframe: Broken for more than 6 months
2016-07-04 www/py-urljr: Broken for more than 6 months
2016-07-04 www/reviewboard: Broken for more than 6 months
2016-07-04 www/xpi-tabletools: Broken for more than 6 months
2016-07-04 www/wikindx: Broken for more than 6 months
2016-07-04 www/typolight: Broken for more than 6 months
2016-07-04 www/varnish-libvmod-header: Broken for more than 6 months
2016-07-04 www/xpi-gbrain: Broken for more than 6 months
2016-07-04 www/trac-robotstxt: Broken for more than 6 months
2016-07-04 www/simplog: Broken for more than 6 months
2016-07-04 www/chtml: Broken for more than 6 months
2016-07-04 databases/postgresql_autodoc: Broken for more than 6 months
2016-07-04 databases/oracle_odbc_driver: Broken for more than 6 months
2016-07-04 databases/mysql-xql: Broken for more than 6 months
2016-07-04 databases/mysql-udf-sys: Broken for more than 6 months
2016-07-04 games/lucidlife: Broken for more than 6 months
2016-07-04 games/gma: Broken for more than 6 months
2016-07-04 games/smiley: Broken for more than 6 months
2016-07-04 games/noegnud-littlehack: Broken for more than 6 months
2016-07-04 games/sdlquake2: Broken for more than 6 months
2016-07-04 games/daimonin: Depends on expiring games/daimonin-music
2016-07-04 games/noegnud-nethack: Broken for more than 6 months
2016-07-04 games/xbomber: Broken for more than 6 months
2016-07-04 games/xwelltris: Broken for more than 6 months
2016-07-04 games/ftjava: Broken for more than 6 months
2016-07-04 games/daimonin-music: Broken for more than 6 months
2016-07-04 games/gno3dtet: Broken for more than 6 months
2016-07-04 games/qtv: Broken for more than 6 months
2016-07-04 games/xwordpy: Broken for more than 6 months
2016-07-04 games/netris: Broken for more than 6 months
2016-07-04 games/rt2-demo: Broken for more than 6 months
2016-07-04 games/noegnud-addons: Broken for more than 6 months
2016-07-04 games/noegnud-nethack-deet: Broken for more than 6 months
2016-07-04 games/live-f1: Broken for more than 6 months
2016-07-04 games/xonix: Broken for more than 6 months
2016-07-04 games/fgkicker: Broken for more than 6 months
2016-07-04 games/tank: Depends on expiring graphics/libaux
2016-07-04 games/linux-nwserver: Broken for more than 6 months
2016-07-04 games/quake2-zaero: Broken for more than 6 months
2016-07-04 games/pyching: Broken for more than 6 months
2016-07-04 games/thevalley: Broken for more than 6 months
2016-07-04 games/xroads: Broken for more than 6 months
2016-07-04 games/fxsudoku: Broken for more than 6 months
2016-07-04 games/sudoku: Broken for more than 6 months
2016-07-04 games/kmancala: Broken for more than 6 months
2016-07-04 games/plonx: Broken for more than 6 months
2016-07-04 games/wmminichess: Broken for more than 6 months
2016-07-04 games/noegnud-slashem: Broken for more than 6 months
2016-07-04 games/latrine: Broken for more than 6 months
2016-07-04 games/pysycache-themes: Broken for more than 6 months
2016-07-04 games/nibbles: Broken for more than 6 months
2016-07-04 games/hlstatsx: Broken for more than 6 months
2016-07-04 audio/streamtuner: Broken for more than 6 months
2016-07-04 audio/mangler: Broken for more than 6 months
2016-07-04 audio/hawkvoice: Broken for more than 6 months
2016-07-04 audio/alac: Broken for more than 6 months
2016-07-04 x11-wm/e-module-mpdule: Broken for more than 6 months
2016-07-04 x11-wm/e-module-tclock: Broken for more than 6 months
2016-07-04 x11-wm/musca: Broken for more than 6 months
2016-07-04 x11-wm/e-module-places: Broken for more than 6 months
2016-07-04 x11-wm/e-module-forecasts: Broken for more than 6 months
2016-07-04 x11-wm/e-module-net: Broken for more than 6 months
2016-07-04 x11-wm/e-module-penguins: Broken for more than 6 months
2016-07-04 ftp/fget: Broken for more than 6 months
2016-07-04 net-mgmt/netmond: Broken for more than 6 months
2016-07-04 net-mgmt/ipfm: Broken for more than 6 months
2016-07-04 20:48:23 +00:00
Muhammad Moinur Rahman
55436ec3a9 emulators/qemu-devel: Fix OPTIONS knob for NO_X11
- This patch fixes the unecessary build of X11 for NO_X11

Submitted by:	olgeni
2016-07-04 16:56:03 +00:00
Roger Pau Monné
26d0500335 xen: update to final 4.7.0
Sponsored by: Citrix Systems R&D
2016-07-04 15:29:45 +00:00
David Naylor
2cbfdecf15 emulators/i386-wine-devel: update to 1.9.13. 2016-06-29 05:29:20 +00:00
Sean Bruno
ffa7e2ac5a Update qemu-sbruno/user-static to capture pull request:
- Allow utimensat() syscall on FreeBSD 10.3, where pkg(8) requires it.

Update qemu-sbruno Makefile to not build qemu-tools when building
qemu-user-static slave port.  (ian@)
2016-06-28 18:03:31 +00:00
Gerald Pfeifer
c328b78609 Update to Wine 1.9.13. This includes the following changes:
- More Shader Model 5 support in Direct3D.
 - Unicode data updated to Unicode 9.0.0.
 - Improvements to GDI paths and metafiles.
 - More progress towards the Direct3D command stream.
 - Various bug fixes.

This now uses a new version of the Gecko engine based on Firefox 47,
and accordingly the wine-gecko-devel port is updated to version 2.44
to 2.47.
2016-06-26 19:12:02 +00:00
David Naylor
5d95cdf551 emulators/i386-wine-devel: update to 1.9.12.
- Track mono dependency change
 - Update minimum FreeBSD ABI for -current.
2016-06-25 20:16:29 +00:00
Brooks Davis
a3278c2d81 Update to a new snapshot with improved compressed capability support. 2016-06-24 23:18:12 +00:00
Dmitry Marakasov
2e05572d39 - Switch to options helpers
- Cosmetic fixes
2016-06-24 15:14:47 +00:00
Dmitry Marakasov
b6a21a5b7d - Switch to options helpers
- Cosmetic fixes
2016-06-24 14:03:43 +00:00
Sean Bruno
22e415fd43 Capture upstream pull request from jkim@
https://github.com/seanbruno/qemu-bsd-user/pull/23

Limit sysctl(3) output for hw.availpages to 4GB.
- This output should be limited to 4GB on 32-bit targets to be consistent
  with hw.physmem. Note this also limits sysconf(3) with _SC_PHYS_PAGES
  because libc uses sysctlbyname("hw.availpages", ...) to get the value.
- Properly swap output for hw.physmem, etc. while I am in the neighborhood.

Submitted by:	jkim@
2016-06-21 14:59:46 +00:00
Gerald Pfeifer
292226c05d Update to Wine 1.9.12. This includes the following changes:
- Initial version of a taskbar in desktop mode.
 - Fixes for right-to-left languages in Uniscribe.
 - More Shader Model 4 support in Direct3D.
 - Better metafile support in RichEdit.
 - Various bug fixes.

It also now uses a bug fix update of the Mono engine and accordingly
the wine-mono-devel port is updated to version 4.6.3 from 4.6.2.
2016-06-20 22:32:23 +00:00
Tijl Coosemans
e079e58681 Update Linux ports to Centos 6.8.
PR:		210373
Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
Differential Revision:	https://reviews.freebsd.org/D6891
2016-06-20 17:13:26 +00:00
Mathieu Arnold
7ae7b018cc With the power of USES=dos2unix, get rid of most patches and files
with CRLF.

While there, run make makepatch, rename patches to use the new scheme,
and various fixes.

With hat:	portmgr
Sponsored by:	Absolight
2016-06-20 16:23:28 +00:00
David Naylor
ea7f775974 emulators/i386-wine: update to 1.8.3.
- Backport TIMESTAMP handling for distinfo.
2016-06-20 04:26:46 +00:00
David Naylor
4013b199d9 emulators/i386-wine-devel: update to 1.9.11_1 2016-06-20 04:24:49 +00:00
Gerald Pfeifer
53d7f0eb79 Require/build with Xinerama support (which has been explicitly disabled
before to ensure reproducible builds).  Without this, some programs would
incorrectly show full screen as a wide window covering 2 monitors.

PR:		210039
Submitted by:	Henry Hu <henry.hu.sh@gmail.com>
2016-06-19 13:34:51 +00:00
Gerald Pfeifer
a804c14858 Update to Wine 1.8.3 which brings
- various bug fixes;
 - a lot of additional NVidia cards in the GPU description table; and
 - updates to the National Language Support files.

A bit surprisingly given the nature of this maintenance release, also
a handfull of changes to the packaging list (such as a new include file
include/wine/windows/fontsub.h).
2016-06-18 21:28:25 +00:00
Ruslan Makhmatkhanov
6e7f566994 emulators/xen: fix typo in description
Also add missing tabulation. Non-functional changes.

Approved by:	portmgr (blanket approval)
2016-06-17 06:42:04 +00:00
Roger Pau Monné
85cb897cb3 xen: update to 4.7.0-rc6
Sponsored by:	Citrix Systems R&D
2016-06-16 15:25:26 +00:00
Mathieu Arnold
5b55a8a53e Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo

PR:		210149
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	The FreeBSD Foundation, Absolight
Differential Revision:	https://reviews.freebsd.org/D6577
2016-06-16 13:23:13 +00:00
Muhammad Moinur Rahman
82892483e0 emulators/qemu: Fix patch files which was updated in latest dist
Submitted by:	bar
2016-06-15 18:04:36 +00:00
Stefan Eßer
6bd5bb3183 Add run-time dependencies required by the scipts installed by this port.
PR:		210271
Submitted by:	madpilot
Approved by:	antoine (mentor, implicit)
2016-06-15 15:07:56 +00:00
Kurt Jaeger
624ea74f53 devel/py-qt4-core: change USE_PYQT from sip_build to sip to fix build
for those ports, unbreak:
  science/veusz
  math/qtiplot
  emulators/swine
  devel/ninja-ide

PR:		210045
Reported by:	antoine
Submitted by:	Tobias C.Berner <tcberner@gmail.com> (kde)
2016-06-14 18:18:54 +00:00
Sean Bruno
6a860fddbd Use correct ELF magic to run powerpc64 binaries.
PR:		209983
Submitted by:	jbeich
2016-06-13 19:12:50 +00:00
Rene Ladan
c1538cfa58 Update the Spectrum Fuse ports to version 1.2.0
- Always include libaudiofile support, it was ON in fuse-utils
  but OFF in libspectrum
- Bump version of libspectrum.so to 8.2.0
- New ulitity tape2pulses

- Add missing LIB_DEPENDS / USES / USE_* [1]
- Remove upstreamed patch
- Pet portlint
Reported by:	poudriere [1]
2016-06-11 22:02:29 +00:00
Sean Bruno
5dabcea590 Update to capture pull request from jkim@
- Clean up locking/unlocking path names

Submitted by:	jkim
2016-06-11 16:56:19 +00:00
Danilo Egea Gondolfo
a8e189aee3 - Update to 0.64
- Add dependencies explicitly as suggested by Q/A
- Sort USE_QT4 list
2016-06-10 20:42:25 +00:00
Brooks Davis
978460fe07 Update qemu-cheri* to a fresh snapshot.
Switch qemu-cheri128 to compressed 128-bit capabilities per the soon to be
released ISA v5.  Introduce a new qemu-cheri128m port which retains
support for 128-bit capabilities that magically store 256-bit of data
preserving semantic compatiblity with 256-bit capabilities while having
128-bit size and alignment requirments.
2016-06-10 14:41:14 +00:00
Muhammad Moinur Rahman
fd7dd95f0d emulators/qemu: Update version 2.4.0=>2.5.1.1
- Change X86_TARGETS Description
- Update pkg-plist to fix X86_TARGETS issue
2016-06-10 11:01:52 +00:00
Rene Ladan
373bcae0cf emulators/fuse-roms: move Opus-22.rom to my own server because the original
server got flaky and the only other public one does not allow fetch(1)

Reported by:	pkg-fallout
2016-06-09 21:22:51 +00:00
Roger Pau Monné
500732089d xen: add missing file from r416310
Sponsored by: Citrix Systems R&D
2016-06-07 07:34:40 +00:00
David Naylor
fe788f2196 emulators/i386-wine-devel: fix distfile generation.
Filter out all but the first TIMESTAMP.
2016-06-06 18:01:34 +00:00
Mathieu Arnold
7f304f0633 Remove unneeded usage of:
- MASTER_SITE_SUBDIR
- ${MASTER_SITES_FOO}
- :DEFAULT (and use a default when appropriate)

Sponsored by:	Absolight
2016-06-06 15:25:42 +00:00
Tijl Coosemans
778d4075ed Bump PORTREVISION for previous commit. 2016-06-05 20:53:33 +00:00
Tijl Coosemans
fb000dfd11 Update krb5-libs to 1.10.3-42z1.el6_7. 2016-06-05 19:35:39 +00:00
Antoine Brodin
5c4046ce2a Mark BROKEN: fails to stage
pyuic4 MainWindow.ui -o MainWindow.py
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/site-packages/PyQt4/uic/pyuic.py", line 26, in <module>
    from PyQt4 import QtCore
ImportError: No module named sip

Reported by:	pkg-fallout
2016-06-04 17:22:17 +00:00
Antoine Brodin
c31defa0fc Deprecate ports broken for more than 6 months 2016-06-03 16:44:58 +00:00
Roger Pau Monné
a4dda243bb xen-kernel: update post install message
Expand the post install instructions to mention the need to add
hw.pci.mcfg=0 to /boot/loader.conf, or else FreeBSD is not going to be able
to boot as Dom0.

Approved by:	bapt
Sponsored by:	Citrix Systems R&D
2016-06-03 13:03:08 +00:00
Roger Pau Monné
5e841df32b xen: update to Xen 4.7-rc4
Now both the xen-kernel and xen-tools packages are compiled with clang from
base.

xen-kernel however needs to use binutils due to some limitations in the
current elftc.

Approved by:	bapt
Sponsored by:	Citrix Systems R&D
2016-06-03 11:26:09 +00:00
Sean Bruno
3fb363a093 Update to a merged copy of 2.6.50 2016-06-02 19:11:22 +00:00
Sean Bruno
2872755c3d Fixup for macros that conflict with standard C++ function names.
PR:	209590
Submitted by:	dim@
2016-06-02 18:37:34 +00:00
David Naylor
e8ade8db35 emulators/i386-wine-devel: update to 1.9.11 2016-06-01 19:02:56 +00:00
Mathieu Arnold
77f8276a88 Github cleanup.
- Use the version tag instead of commit hash when they're the same.
- Remove unnneeded variables.
- Simplify go- ports when possible.
- Various fixes.

Sponsored by:	Absolight
2016-06-01 13:15:36 +00:00
Mathieu Arnold
ea98dfade6 Fix build with Perl 5.25.1+.
Unescaped left brace in regex is illegal in regex.

With hat:	perl@
Sponsored by:	Absolight
2016-05-31 10:18:27 +00:00
Gerald Pfeifer
956abf570f Update to Wine 1.9.11. This includes the following changes:
- Better support for long URLs in WinInet.
 - Various Direct3D 11 improvements.
 - Down-mixing support in DirectSound.
 - Some cosmetic improvements in desktop mode.
 - Various bug fixes.
2016-05-29 21:15:21 +00:00
Muhammad Moinur Rahman
cb9817cc61 emulators/qemu-devel: Update version 2.5.0=>2.6.1 2016-05-29 00:24:29 +00:00
Dmitry Marakasov
c86e9d9724 Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by default anyway and don't need to be listed
Approved by:	portmgr blanket
2016-05-23 20:35:01 +00:00
Dmitry Marakasov
54a08f6954 Convert tab after WWW: in pkg-descrs to single space as per PHB
Approved by:	portmgr blanket
2016-05-23 18:36:52 +00:00
David Naylor
207165daf9 emulators/i386-wine-devel: update to 1.9.10. 2016-05-23 05:58:23 +00:00
Gerald Pfeifer
d7d34cab7d Update to Wine 1.9.10. This includes the following changes:
- High resolution ("Retina") rendering option on Mac OS X.
 - More compatible directory enumeration.
 - A number of C++ runtime fixes.
 - Video output improvements.
 - Various bug fixes.
2016-05-20 18:12:24 +00:00
Sean Bruno
e430a29bd0 Update qemu-sbruno/qemu-static-user:
Disable atomic macros which conflict with C++ QEMU's atomic header defines
a few macros which conflict with standard C++ function names, namely
atomic_fetch_{add,sub,and,or}.  Disable these macros when compiling for C++.

PR:		209590
Submitted by:	dim
2016-05-19 17:27:35 +00:00
Dmitry Marakasov
e87a8bd319 - Fix trailing whitespace in pkg-messages
Approved by:	portmgr blanket
2016-05-19 11:09:14 +00:00
Dmitry Marakasov
652069fa2d - Fix trailing whitespace in Makefiles
Approved by:	portmgr blanket
2016-05-19 10:57:35 +00:00
Dmitry Marakasov
1d1f878054 - Fix trailing whitespace in pkg-descrs, categories [a-f]*
Approved by:	portmgr blanket
2016-05-19 10:21:23 +00:00
Hiroki Sato
5c2173b0df security/trousers:
- Update to 0.3.13.
- Remove CONFLICTS with emulators/tpm-emulator.

  Two separate binaries, sbin/tcsd (for actual TPM device) and
  sbin/tcsd_emu (for TPM emulator) are now installed.  rc.d/tcsd chooses
  one of them depending on $tcsd_mode.  When tcsd_mode="native" (default)
  it runs sbin/tcsd, and when tcsd_mode="emulator" it runs sbin/tcsd_emu.
  Note that sbin/tcsd_emu depends on tpmd in emulators/tpm-emulator.

- Simplify @sample.

emulators/tpm-emulator:

- Remove CONFLICTS with security/trousers.
- Simplify rc.d/tpmd.
2016-05-18 13:53:45 +00:00
Stefan Eßer
804e286a96 Install man-page and change dependency from i386-wine-devel to i386-wine,
since the latter is now at a revision that supports all required features
for this port.

This is a clean-up after the upgrade from 4.2.8 to 4.2.10.

Approved by:	antoine (mentor, implicit)
2016-05-17 20:26:14 +00:00
Stefan Eßer
175cd3b8f8 Really fix the generation of shortcut files.
Approved by:	antoine (mentor, implicit)
2016-05-16 07:51:55 +00:00
Baptiste Daroussin
1218bd3a7a Do not try to load the linux* modules from the pre install scripts
It will always fail when jailed, it is also inaccurate given we now have
linux and linux64 modules. There is alrady a test before that via checking
compat.linux.* which is good enough to determien if linux emulation is supported
2016-05-15 14:51:38 +00:00
Brooks Davis
bd25ad9ed6 New snapshot fixing CLL/CSC instructions and adding programatic control of
instruction tracing from the guest os.
2016-05-14 23:36:47 +00:00
Brooks Davis
d66665c80a Upgrade CHERI LLVM and Qemu ports to new snapshots supporting the
upcoming v5 ISA.

Sponsored by:	DARPA, AFRL
2016-05-12 23:25:20 +00:00
David Naylor
ca7f419d50 emulators/i386-wine-devel: update to 1.9.9_1.
- Add GNUTLS support.
2016-05-11 20:15:03 +00:00
Stefan Eßer
3cfcc9035b In order to make desktop shortcuts work, the playonfreebsd script must be
executable.

PR:		209418
Submitted by:	iluxa (at) ex.ua
Approved by:	antoine (mentor, implicit)
2016-05-10 17:11:02 +00:00
Stefan Eßer
7e79a1267e Fix problem with desktop shortcuts reported by iluxa (at) ex.ua.
Upgrade to latest stable version 4.2.10 on that occasion.

PR:		209418
Reported by:	iluxa (at) ex.ua
Approved by:	antoine (mentor, implicit)
2016-05-10 17:05:33 +00:00
Kurt Jaeger
134f5990b0 emulators/virtualbox-ose: fix VirtualBox hang on file dialog in KDE
PR:		199364
Submitted by:	yuri@rawbw.com
Approved by:	maintainer timeout
2016-05-10 05:29:13 +00:00
Gerald Pfeifer
aba8c1ffde Include GNUTLS in the default options since apparently it does help
with Evernote and World of Warcraft.

Bump PORTREVISION.

PR:		208234
2016-05-08 11:51:23 +00:00
Jose Alonso Cardenas Marquez
df0ad67096 - Update to 0.9.38.7
- Remove obsolete patch files
2016-05-05 13:42:08 +00:00
David Naylor
7566266891 i386-wine-devel: fix dependency on wine-mono-devel.
Reported by:	Ivan Klymenko <fidaj@ukr.net>
2016-05-04 20:07:09 +00:00
David Naylor
07e57bb7c0 emulators/i386-wine-devel: update to 1.9.9
Changes:
 - fix: faulty assumption in plists merge script: the first plist may not
        always be peekable.
2016-05-04 06:10:36 +00:00
Gerald Pfeifer
7ed7e829b6 Update to Wine 1.9.9. This includes the following changes:
- More work towards the WineD3D command stream.
 - Service proxies in WebServices.
 - Query support in the builtin reg.exe utility.
 - Improved support for long URLs in WinInet.
 - Various bug fixes.
2016-05-02 00:41:17 +00:00
Danilo Egea Gondolfo
8f6d4cb991 - Update to 0.63 2016-05-01 04:42:00 +00:00
David Naylor
54eee4d0f7 emulators/i386-wine-devel: update to 1.9.8. 2016-04-30 16:53:44 +00:00
Jung-uk Kim
5f1fac2a4e Add upstream patches to build with recent iASL on head.
https://www.virtualbox.org/changeset/58415
https://www.virtualbox.org/changeset/60582
https://www.virtualbox.org/changeset/60616
2016-04-29 20:15:36 +00:00
Tilman Keskinoz
4efbbe5d03 Update libcdio: 0.92 -> 0.93
Udpate libcdio-paranoia: 10.2+0.90+1 -> 10.2+0.93+1

Bump PORTREVISIONs of dependents because of shared library version bump.
2016-04-29 15:20:28 +00:00
Sean Bruno
0aa0f23bcf Update qemu-sbruno to track upstream at version 2.5.93.
Fix aarch64 bsd-user by aligning the stack properly.  (andy turner).
743fbfffc1

Fix bsd-user syscall implementation of renameat.  (mikael urankar).
aa90a1b960

Fix bsd-user log_file argument handling now that handling of NULL isn't
being done by the called functions.
e3d069e8b1

PR:		208952
2016-04-28 21:01:44 +00:00
Steve Wills
462519941e Convert USES=gem:autoplist to USES=gem since autoplist is default 2016-04-27 21:57:31 +00:00
Steve Wills
b3e8fe8d85 create USES=gem and update rubygem- ports to use it
Note that for now ports still have to have USE_RUBY=yes to use USES=gem

PR:		209041
Differential Revision:	https://reviews.freebsd.org/D6070
2016-04-27 16:36:41 +00:00
Sean Bruno
8ccb519c88 Fix arguments for renameat() to resolve issues with building certain
ports.

PR:	208952
Submitted by:	Mikael Urankar <mikhael.urankar@gmail.com>
2016-04-25 15:38:14 +00:00
Lars Engels
c68cd6d1be Pass maintainership to submitter
PR:		208924
Submitted by:	Bob Eager <rde@tavi.co.uk> / <bob@eager.cx>
Sponsored by:	Essen Linuxhotel Hackathon 2016
2016-04-24 09:29:54 +00:00
Brooks Davis
5b968c412b Update with the latest fixes. 2016-04-23 14:59:53 +00:00
Jung-uk Kim
aec8860ef3 Update to 4.3.38.
MFH:		2016Q2
2016-04-21 17:11:12 +00:00
Steve Wills
86cd4fbe5a many ports: mark broken on powerpc64 2016-04-21 16:43:14 +00:00
Muhammad Moinur Rahman
6bf674cadf emulators/qemu-devel: Fix pkg-plist with NO_X86_TARGETS
PR:		206292
Submitted by:	lantw44@gmail.com
2016-04-20 07:01:15 +00:00
Jung-uk Kim
59ea4203de Install NAT helper.
PR:		208893
2016-04-19 16:20:08 +00:00
Gerald Pfeifer
ac935c3d5b Update to Wine 1.9.8. This includes the following changes:
- More work towards the WineD3D command stream.
 - More WebServices reader support.
 - Still more Shader Model 5 support.
 - Support for gradients in metafiles.
 - Improved table formatting in WinHelp.
 - Various bug fixes.

And it uses a new bug fix version of the Mono engine in form
of the wine-mono-devel port which moves from version 4.6.0 to
version 4.6.2.
2016-04-17 23:51:49 +00:00
Gerald Pfeifer
4d8fd85a35 Fix for old make on FreeBSD 9.x. USE_GCC=yes instead of USE_GCC=any there.
PR:		206527
2016-04-17 10:03:13 +00:00
Gerald Pfeifer
a39121d704 Force the use of GCC where it is the system compiler since
COMPILER_VERSION will be 42 (the GCC version) even if clang
is CHOSEN_COMPILER_TYPE in that case.

PR:		206527
2016-04-17 09:52:56 +00:00
David Naylor
bb42342183 emulators/i386-wine: update to 1.8.2. 2016-04-15 07:22:56 +00:00
Steve Wills
a5aebf960e CentOS ports: for c6_64, install 32bit libraries alongside
PR:		206943
Submitted by:	xmj
2016-04-13 01:49:24 +00:00
Gerald Pfeifer
b36d2434df Update to Wine 1.8.2 which brings
- various bug fixes;
 - small translation updates.
2016-04-12 14:20:54 +00:00