notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: emulators/virtualbox-ose/Makefile

Number of commits found: 279 (showing only 100 on this page)

«  1 | 2 | 3  »  

Wednesday, 28 Feb 2018
23:36 jkim search for other commits by this committer
Update to 5.2.8.

https://www.virtualbox.org/wiki/Changelog#v8
Original commitRevision:463272 
Monday, 5 Feb 2018
21:06 eugen search for other commits by this committer
emulators/virtualbox-ose: remove extra dependency on cdrtools.

Dependency on cdrtools was introduced 6 years ago for sake of mkisofs:
https://svnweb.freebsd.org/ports/head/emulators/virtualbox-ose/Makefile?revision=274444&view=markup

In fact, VirtualBox build system does not use makeisofs
while building for FreeBSD because it does not even try to buid
VirtualBox Additions ISO image as its documentation says
in the Prerequisites section:

	mkisofs (required only for additions which aren't supported yet)
	=> /usr/ports/sysutils/cdrtools

	https://www.virtualbox.org/wiki/FreeBSD%20build%20instructions

And it never really used mkisofs.
Drop the dependency and bump PORTREVISION.

PR:		225376
Approved by:	vbox (maintainer timeout, 2 weeks)
Original commitRevision:461020 
Thursday, 25 Jan 2018
21:20 jbeich search for other commits by this committer
multimedia/libvpx: update 1.7.0

Changes:	https://chromium.googlesource.com/webm/libvpx/+log/v1.6.1..v1.7.0
ABI:		https://abi-laboratory.pro/tracker/timeline/libvpx/
Original commitRevision:459963 
Tuesday, 23 Jan 2018
17:30 jkim search for other commits by this committer
Re-enable AVX/AVX2 support for guest.

This patch is no longer necessary according to the original reporter.

PR:		211651
Original commitRevision:459789 
Wednesday, 17 Jan 2018
01:59 jkim search for other commits by this committer
Update to 5.2.6.
Original commitRevision:459217 
Wednesday, 27 Dec 2017
21:01 jkim search for other commits by this committer
Update to 5.2.4.

https://www.virtualbox.org/wiki/Changelog#v4
Original commitRevision:457424 
Thursday, 30 Nov 2017
23:53 jkim search for other commits by this committer
Reduce build dependency.

PR:		223709
Original commitRevision:455238 
23:45 jkim search for other commits by this committer
Update to 5.2.2.
Original commitRevision:455237 
15:50 mat search for other commits by this committer
Convert Python ports to FLAVORS.

  Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
Original commitRevision:455210 
Monday, 30 Oct 2017
15:41 mat search for other commits by this committer
Fix stage-qa warnings.

Sponsored by:	Absolight
Original commitRevision:453192 
Wednesday, 25 Oct 2017
00:15 jkim search for other commits by this committer
- Work around build failures with Clang 3.4.
- Fix build without WEBSERVICE option. [1]

PR:		223201 [1]
Original commitRevision:452823 
Monday, 23 Oct 2017
16:49 jkim search for other commits by this committer
Update to 5.2.0.
Original commitRevision:452715 
Tuesday, 17 Oct 2017
00:53 jkim search for other commits by this committer
Update to 5.1.30.
Original commitRevision:452255 
Thursday, 28 Sep 2017
23:46 jkim search for other commits by this committer
Revert r450636.  It did not work as we expected.
Original commitRevision:450880 
Monday, 25 Sep 2017
21:39 jkim search for other commits by this committer
Build recompiler with Clang if global register variable is supported.

Note support for global register variable was proposed in the following
upstream code reviews:

https://reviews.llvm.org/D3261
https://reviews.llvm.org/D3797

and commits:

http://llvm.org/viewvc/llvm-project?view=revision&revision=208104
http://llvm.org/viewvc/llvm-project?view=revision&revision=209149

However, it has very limited support as described in the following upstream
PR in the gory details:

https://bugs.llvm.org/show_bug.cgi?id=31005

Although it is incomplete, I *believe* Clang 3.5 and later has just enough
code to support (ancient) QEMU-based recompiler.  If you experience any VM
crash related to recompiler, e.g., "fatal error in recompiler cpu" in its
VBox.log, please let me know.

FYI, QEMU was rewritten not to use this GCC-specific feature long time ago:

http://lists.gnu.org/archive/html/qemu-devel/2011-05/msg00855.html
https://www.mail-archive.com/qemu-devel@nongnu.org/msg63834.html

Unfortunately, VirtualBox stopped merging code from QEMU for some time now.

Tested by:	soralx@cydem.org
Original commitRevision:450636 
Friday, 15 Sep 2017
06:34 jkim search for other commits by this committer
Update to 5.1.28.
Original commitRevision:449889 
Friday, 8 Sep 2017
01:12 jkim search for other commits by this committer
- Fix overflow in host memory size calculation.
- Catch up with PG_CACHE removal on head.

PR:		211432
Original commitRevision:449436 
Tuesday, 1 Aug 2017
20:46 jkim search for other commits by this committer
Revert r446286.  ar(1) on head should be fixed with r321674.
Original commitRevision:447077 
Friday, 28 Jul 2017
17:08 jkim search for other commits by this committer
Update to 5.1.26.
Original commitRevision:446841 
Thursday, 20 Jul 2017
19:05 jkim search for other commits by this committer
Apply a bandaid to fix sporadic build failures on head.
Original commitRevision:446286 
Wednesday, 19 Jul 2017
00:03 jkim search for other commits by this committer
Update to 5.1.24.
Original commitRevision:446181 
Wednesday, 12 Jul 2017
02:39 araujo search for other commits by this committer
Bump PORTREVISION of several ports that depends of net/libvncserver to
reflect the changes made on r445054.

PR:			ports/220565 (based on)
Submitted by:		Martin Birgmeier <la5lbtyi@aon.at>
Sponsored by:		iXsystems, Inc.
Original commitRevision:445565 
Tuesday, 23 May 2017
05:03 rezny search for other commits by this committer
Revision bump of all ports with USE_GL after consolidation of mesa-libs

Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D10845
Original commitRevision:441503 
Monday, 1 May 2017
18:49 jkim search for other commits by this committer
Update to 5.1.22.
Original commitRevision:439904 
Wednesday, 26 Apr 2017
19:04 ak search for other commits by this committer
- Remove checks for .PARSEDIR and vestiges of pmake support

PR:	218832
Approved by:	portmgr (antoine)
Original commitRevision:439485 
Friday, 21 Apr 2017
16:43 jkim search for other commits by this committer
Add a forgotten Qt4 patch in the previous commit.

Pointyhat to:	jkim
PR:		218795
Original commitRevision:439099 
Wednesday, 19 Apr 2017
18:10 jkim search for other commits by this committer
- Fix build with option QT4.
- Warn users Qt4 support may be removed in the future.

PR:		218748
Submitted by:	w dot schwarzenfeld at utanet dot at (initial)
Original commitRevision:438899 
Tuesday, 18 Apr 2017
20:56 jkim search for other commits by this committer
Update to 5.1.20.
Original commitRevision:438815 
Wednesday, 15 Mar 2017
22:22 jkim search for other commits by this committer
Update to 5.1.18.
Original commitRevision:436259 
Thursday, 9 Mar 2017
21:50 jkim search for other commits by this committer
Improve D-Bus support.
Original commitRevision:435803 
19:21 jkim search for other commits by this committer
Fix build with option QT4.

Submitted by:	Walter Schwarzenfeld (w dot schwarzenfeld at utanet dot at)
Original commitRevision:435797 
00:25 jkim search for other commits by this committer
Update to 5.1.16.
Original commitRevision:435738 
Tuesday, 21 Feb 2017
22:02 jkim search for other commits by this committer
Update the hints to use service(8).
Original commitRevision:434556 
21:56 jkim search for other commits by this committer
Warn and stop build if the kernel cannot execute a 32-bit binary.

PR:		193946
Original commitRevision:434555 
20:12 jkim search for other commits by this committer
Fix build with option QT4.

PR:		217240
Original commitRevision:434552 
Wednesday, 25 Jan 2017
21:01 jkim search for other commits by this committer
Fix USB support.

PR:		212845
Submitted by:	hselasky
Tested by:	Graham Menhennitt (graham at menhennitt dot com dot au)
Original commitRevision:432460 
Saturday, 21 Jan 2017
21:47 matthew search for other commits by this committer
Update to 0.9.11

This includes a	security fix for CVE-2016-9941 and CVE-2016-9942

  * Drop files/patch-libvncclient_h264.c -- upstream has dropped h264 support
  * Switch from USE_OPENSSL to USES+=ssl
  * PORTREVISION bump in ports that link against libvncserver.so (with
    their default OPTIONS settings) due to change in ABI version of
    libvncserver.so

PR:		215802
Submitted by:	vlad-fbsd@acheronmedia.com
MFH:		2017Q1
Security:	64be967a-d379-11e6-a071-001e67f15f5a
Original commitRevision:432083 
Thursday, 19 Jan 2017
06:36 jkim search for other commits by this committer
Fix build with QT4.

Reported by:	ler
Tested by:	ler
Original commitRevision:431852 
Wednesday, 18 Jan 2017
19:09 jkim search for other commits by this committer
Update to 5.1.14.
Original commitRevision:431821 
Wednesday, 21 Dec 2016
14:01 jkim search for other commits by this committer
Update to 5.1.12.
Original commitRevision:429084 
Thursday, 24 Nov 2016
20:37 jkim search for other commits by this committer
Update to 5.1.10.
Original commitRevision:427059 
Sunday, 23 Oct 2016
19:37 jkim search for other commits by this committer
Update to 5.1.8.

PR:		213683
Differential Revision:	https://reviews.freebsd.org/D8292
Original commitRevision:424538 
Wednesday, 5 Oct 2016
20:57 jkim search for other commits by this committer
Fix the previous commit.  It was incomplete.

Pointy hat:	jkim
Original commitRevision:423390 
20:49 jkim search for other commits by this committer
Add newly added slave ports to CONFLICTS_INSTALL.
Original commitRevision:423389 
20:13 jkim search for other commits by this committer
Add the newly added emulators/virtualbox-ose-nox11 to CONFLICTS_INSTALL.
Original commitRevision:423384 
19:55 jkim search for other commits by this committer
- 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]
Original commitRevision:423381 
Friday, 30 Sep 2016
01:15 jbeich search for other commits by this committer
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
Original commitRevision:422956 
Friday, 16 Sep 2016
19:47 jkim search for other commits by this committer
Remove a redundant PLIST_SUB.
Original commitRevision:422267 
18:48 jkim search for other commits by this committer
Add support for Python 3.x.

PR:		212691
Original commitRevision:422262 
Monday, 12 Sep 2016
22:52 jkim search for other commits by this committer
Update to 5.1.6.
Original commitRevision:421965 
Wednesday, 7 Sep 2016
21:35 jkim search for other commits by this committer
Update to 5.1.4.
Original commitRevision:421521 
Saturday, 13 Aug 2016
04:05 jkim search for other commits by this committer
Temporarily disable AVX support for guest.  It is unstable for FreeBSD.

PR:		211651
Original commitRevision:420152 
Tuesday, 2 Aug 2016
20:43 jkim search for other commits by this committer
Fix build with non-base OpenSSL without MD2 support.

PR:		211524
Original commitRevision:419492 
Friday, 22 Jul 2016
20:28 jkim search for other commits by this committer
Update to 5.0.26.
Original commitRevision:418931 
Wednesday, 20 Jul 2016
15:33 mat search for other commits by this committer
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
Original commitRevision:418840 
Tuesday, 12 Jul 2016
18:55 jkim search for other commits by this committer
Allow overriding MAINTAINER from slave ports.
Original commitRevision:418435 
Tuesday, 5 Jul 2016
08:06 alfred search for other commits by this committer
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.
Original commitRevision:418067 
Thursday, 16 Jun 2016
13:23 mat search for other commits by this committer
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
Original commitRevision:416966 
Tuesday, 10 May 2016
05:29 pi search for other commits by this committer
emulators/virtualbox-ose: fix VirtualBox hang on file dialog in KDE

PR:		199364
Submitted by:	yuri@rawbw.com
Approved by:	maintainer timeout
Original commitRevision:414919 
Thursday, 21 Apr 2016
17:11 jkim search for other commits by this committer
Update to 4.3.38.

MFH:		2016Q2
Original commitRevision:413748 
Tuesday, 19 Apr 2016
16:20 jkim search for other commits by this committer
Install NAT helper.

PR:		208893
Original commitRevision:413655 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Friday, 5 Feb 2016
04:24 jkim search for other commits by this committer
Update to 4.3.36.
Original commitRevision:408130 
Friday, 22 Jan 2016
12:46 lwhsu search for other commits by this committer
Add "Enable R0 logging" option and set BUILD_TYPE=debug while DEBUG option set

PR:		206470
Submitted by:	lwhsu
Approved by:	decke
Original commitRevision:406926 
Saturday, 14 Nov 2015
19:34 jbeich search for other commits by this committer
multimedia/libvpx: update 1.5.0

ABI isn't compatible, so bump PORTREVISION in consumers.

Changes:	https://chromium.googlesource.com/webm/libvpx/+log/e67d45d..v1.5.0
ACC
report:	https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.4.0.488_1_to_1.5.0/compat_report.html
PR:		204478
Exp-run by:	antoine
Approved by:	ashish (maintainer)
Original commitRevision:401587 
Thursday, 12 Nov 2015
22:15 jkim search for other commits by this committer
Update to 4.3.34.

MFH:		2015Q4
Original commitRevision:401462 
Tuesday, 20 Oct 2015
20:09 jkim search for other commits by this committer
Update to 4.3.32.

MFH:		2015Q4
Original commitRevision:399877 
Thursday, 15 Oct 2015
14:55 mat search for other commits by this committer
Drop 8 support.

With hat:	portmgr
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3694
Original commitRevision:399346 
Friday, 10 Jul 2015
20:42 jkim search for other commits by this committer
Update to 4.3.30.

MFH:		2015Q3
Original commitRevision:391720 
Tuesday, 9 Jun 2015
14:25 jbeich search for other commits by this committer
multimedia/libvpx: update to 1.4.0

ABI isn't compatible, so bump PORTREVISION in consumers.

Changes:	https://chromium.googlesource.com/webm/libvpx/+/v1.4.0
Differential Revision:	https://reviews.freebsd.org/D2570
Exp-run by:	antoine
Approved by:	ashish, multimedia (kwm)
Approved by:	maintainer timeout (ale, dinoex; 2 weeks)
Original commitRevision:388940 
Friday, 15 May 2015
19:29 jkim search for other commits by this committer
Fix build without OpenSSL in the base.

PR:		199377
Original commitRevision:386475 
Wednesday, 13 May 2015
22:20 jkim search for other commits by this committer
Update to 4.3.28.
Original commitRevision:386272 
Monday, 16 Mar 2015
23:04 jkim search for other commits by this committer
Update to 4.3.26.
Original commitRevision:381456 
17:57 jkim search for other commits by this committer
Fix the fix.  My patch was actually wrong and upstream properly fixed it.

Pointy hat to:	jkim
Original commitRevision:381429 
Friday, 13 Mar 2015
21:21 jkim search for other commits by this committer
Fix several bugs found by Clang.  Note few patches were obtained from
upstream.  Other patches were submitted to upstream.
Original commitRevision:381235 
00:39 jkim search for other commits by this committer
VBoxSDL does not support drag and drop feature.  Make it depend upon QT4.
Original commitRevision:381155 
Thursday, 12 Mar 2015
06:52 jkim search for other commits by this committer
- Enable drag and drop from host to guest.
- Make UDPTUNNEL option actually work.
Original commitRevision:381061 
Tuesday, 3 Mar 2015
05:43 jkim search for other commits by this committer
Update to 4.3.24.
Original commitRevision:380340 
Tuesday, 17 Feb 2015
07:07 jkim search for other commits by this committer
Let rc(8) scripts directly execute binaries.  This makes them stop properly.

Submitted by:	vvd@unislabs.com (initial patch)
Original commitRevision:379144 
Monday, 16 Feb 2015
21:49 jkim search for other commits by this committer
Fix the executable wrapper to properly check its installation directory when
QT4 option is disabled.

Reported by:	raul@b2n.org, abi@abinet.ru
Submitted by:	gpalmer (initial patch)
Original commitRevision:379121 
Friday, 13 Feb 2015
00:33 jkim search for other commits by this committer
- Update to 4.3.22.
- Install a wrapper for executables as Linux and Solaris installers do.
Original commitRevision:378904 
Thursday, 25 Dec 2014
20:54 bapt search for other commits by this committer
Bump portrevision after png update
Original commitRevision:375598 
Thursday, 18 Dec 2014
21:03 jkim search for other commits by this committer
Let vboxwatchdog properly create a pidfile.

PR:		196104
Original commitRevision:374922 
Monday, 8 Dec 2014
16:48 tijl search for other commits by this committer
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)
Original commitRevision:374303 
Monday, 1 Dec 2014
21:23 jkim search for other commits by this committer
Fix crash with USB devices attached.

PR:		194196
Original commitRevision:373722 
Tuesday, 25 Nov 2014
00:40 jkim search for other commits by this committer
- Update to 4.3.20.
- Fix MANUAL option. [1]

PR:		195272 [1]
Original commitRevision:373388 
Monday, 20 Oct 2014
19:48 jkim search for other commits by this committer
Update to 4.3.18.
Original commitRevision:371294 
Sunday, 19 Oct 2014
15:43 mva search for other commits by this committer
- Convert ports from dns/, editors/ and emulators/ to new
  USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371188 
Thursday, 18 Sep 2014
09:06 decke search for other commits by this committer
- Add CPE information to virtualbox ports
Original commitRevision:368433 
Wednesday, 17 Sep 2014
09:26 decke search for other commits by this committer
- Update to 4.3.16

Submitted by:	Mikhail Tsatsenko <m.tsatsenko@gmail.com>,
		Jung-uk Kim <jkim@FreeBSD.org>
Obtained from:	svn.redports.org/virtualbox
Original commitRevision:368359 
Wednesday, 10 Sep 2014
20:50 gerald search for other commits by this committer
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)
Original commitRevision:367888 
Tuesday, 10 Jun 2014
07:39 olgeni search for other commits by this committer
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories D-F.

CR:		D196
Approved by:	portmgr (bapt)
Original commitRevision:357277 
Thursday, 29 May 2014
19:18 jkim search for other commits by this committer
- Fix plist when both PYTHON and WEBSERVICE options are disabled. [1]
- Build and install correctly when DEBUG option is enabled. [2]

Reported by:	Mike Jakubik <mike.jakubik@intertainservices.com> [1]
PR:		ports/190227 [1]
Reported by:	Ron Thomas <ron@vopenhouse.ca> [2]
Tested by:	Ron Thomas <ron@vopenhouse.ca> [2]
Original commitRevision:355732 
Friday, 23 May 2014
23:48 jkim search for other commits by this committer
Remove an unnecessary change sneaked in the previous commit.
Original commitRevision:354968 
23:45 jkim search for other commits by this committer
- Compile Python sources before installation. This fixes stage-qa. [1]
- Create symbolic links to SDK directory.

Reported by:	bar, nox [1]
Original commitRevision:354967 
20:08 jkim search for other commits by this committer
Remove cruft from r350637.  The patches requiring the hack was removed in
the previous commit (r354896) because the problem was fixed in 4.3.12:

https://www.virtualbox.org/changeset/50940/vbox
Original commitRevision:354961 
Thursday, 22 May 2014
23:10 jkim search for other commits by this committer
Update to 4.3.12.
Original commitRevision:354896 
Friday, 9 May 2014
23:57 jkim search for other commits by this committer
Add an option to build user manual.  Turned off by default.
Original commitRevision:353547 
Thursday, 8 May 2014
23:58 jkim search for other commits by this committer
- Fix dependencies.  devel/qt4-linguist is not needed at run-time. [1]
- Fix VPX option to actually enable video capture for FreeBSD. [2]

PR:		ports/189417 [1]
PR:		ports/189430 [2]
Original commitRevision:353371 
Tuesday, 8 Apr 2014
17:59 jkim search for other commits by this committer
Fix build without X11.

PR:		ports/188053
Original commitRevision:350637 

Number of commits found: 279 (showing only 100 on this page)

«  1 | 2 | 3  »