Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
5.2.44_27 02 Feb 2025 19:15:13
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-additions,-kmod}{,-legacy}: Update CONFLICTS_INSTALL
and PORTSCOUT before commit new ports with VirtualBox 7.0.x
PR: 271146 |
5.2.44_27 01 Feb 2025 21:32:11
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-legacy}: Merge patches and unify patch names for
src/VBox/Devices/PC/ipxe/Makefile.kmk |
5.2.44_27 19 Jan 2025 02:00:46
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-nox11}-legacy: Unbreak build with PYTHON option with
python 3.10+
MFH: 2025Q1 |
5.2.44_27 18 Jan 2025 20:25:21
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-nox11}-legacy: Add SLAVE_PORT definition
MFH: 2025Q1 |
18 Jan 2025 20:13:25
  
|
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-nox11}-legacy: Fix PYTHON in DEFAULT_OPTIONS, return
clearing of ENV
MFH: 2025Q1 |
5.2.44_25 07 Jan 2025 19:37:49
    |
Vladimir Druzenko (vvd)  Author: takahiro.kurosawa |
emulators/virtualbox-ose{,-additions}{,-nox11}-legacy: Fix vboxvfs bugs
This commit fixes vboxvfs (shared foler) kernel module bugs:
* fix open file leaks on creating files that causes file descriptor
leaks on host;
* fix halfway lookups.
PR: 245865
MFH: 2025Q1 |
5.2.44_24 07 Jan 2025 18:16:55
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-additions}-legacy: Unification of patches with ports
emulators/virtualbox-ose{,-additions}
Replace REINPLACE_CMD in Makefiles with patches in files/*.
PR: 272991 279257
MFH: 2025Q1 |
5.2.44_24 05 Jan 2025 01:43:43
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-nox11}{,-legacy}: Fix listen VNC on TCP port on IPv6
address
Four new options are available:
- "VNCAddress4" -> IPv4 address to use
- "VNCPort4" -> IPv4 Port to use
- "VNCAddress6" -> IPv6 address to use
- "VNCPort6" -> IPv6 port to use
"TCP/Ports" is used for backward compatibility as IPv4 and IPv6 ports if
"VNCPort4" or "VNCPort6" is not defined.
Detailed description is here:
https://www.virtualbox.org/browser/vbox/trunk/src/VBox/ExtPacks/VNC/VBoxVNC.cpp#L361
PR: 193778 |
5.2.44_23 04 Jan 2025 22:58:32
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-kmod}-legacy: Fix MASTER_SITES
Fixes: b4a6bc8744f4 (Improve ports) |
5.2.44_23 04 Jan 2025 21:14:31
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose*: Improve ports
* Replace PORTVERSION with DISTVERSION.
* Fix CONFLICTS_INSTALL.
* Fix PYTHON in DEFAULT_OPTIONS in emulators/virtualbox-ose.
* Pet portclippy and portlint.
* Formatting and etc.
PR: 258159 |
5.2.44_23 25 Dec 2024 09:48:45
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose-kmod-legacy: Fix build error since 1500027 (struct
ifnet is now hidden)
Based on patch from wulf.
PR: 282780
Tested by: groenveld@acm.org |
5.2.44_23 23 Nov 2024 08:31:00
    |
Gleb Popov (arrowd)  |
*: Bump PORTREVISIONs of Pulseaudio consumers
Sponsored by: Future Crew, LLC |
5.2.44_22 02 Nov 2024 01:01:11
    |
Jan Beich (jbeich)  |
multimedia/libvpx: update 1.15.0
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.14.1..v1.15.0
Reported by: Repology |
5.2.44_21 01 Oct 2024 18:56:20
    |
Rene Ladan (rene)  |
all: drop support for expired FreeBSD 14.0
Simplify expressions for FreeBSD 13.X
Reviewed by: many
Differential Revision: https://reviews.freebsd.org/D46601 |
5.2.44_21 29 Jul 2024 23:57:11
    |
Mark Johnston (markj)  |
emulators/virtualbox-ose-kmod-legacy: Catch up with FreeBSD KPI changes
After 1500021, kick_proc0() doesn't exist.
PR: 280495
Approved by: vvd (maintainer) |
5.2.44_21 20 Jul 2024 09:35:41
    |
Vladimir Druzenko (vvd)  Author: Igor Malyshev |
emulators/virtualbox-ose{,-nox11}-legacy: fix USB passthrough fails with: Failed
to create a proxy device for the USB device
Failed to create a proxy device for the USB device. (Error:
VERR_INVALID_PARAMETER)
00:00:24.961804 usbProxyConstruct: Failed to open '/dev/ugen0.6',
rc=VERR_INVALID_PARAMETER
00:00:24.961881 ERROR [COM]: aRC=NS_ERROR_FAILURE (0x80004005)
aIID={872da645-4a9b-1727-bee2-5585105b9eed} aComponent={ConsoleWrap}
aText={Failed to create a proxy device for the USB device. (Error:
VERR_INVALID_PARAMETER)}, preserve=false aResultDetail=-2
In commit
https://cgit.freebsd.org/src/commit/?id=9b077d72bcc313baea2b9283afc7f568739eaadc
+#define USB_FS_XFER_MAX 126
- if (fs_ep_ptr == NULL || ep_index_max > 127)
+ if (fs_ep_ptr == NULL || ep_index_max > USB_FS_XFER_MAX)
To fix VirtualBox decrease USBFBSD_MAXENDPOINTS from 127 to 126:
-#define USBFBSD_MAXENDPOINTS 127
+#define USBFBSD_MAXENDPOINTS 126
PR: 270900
Tested by: groenveld@acm.org, russo@bogodyn.org
Approved by: with hat of vbox (maintainer)
MFH: 2024Q3 |
5.2.44_20 14 Jul 2024 14:18:51
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose-legacy: fix build
emulators/virtualbox-ose-additions{,-nox11}-legacy on main: error: unknown type
name 'uma_zone_t'
In file included from
/wrkdirs/usr/ports/emulators/virtualbox-ose-additions-legacy/work/VirtualBox-5.2.44/src/VBox/Additions/freebsd/vboxvfs/vboxvfs_prov.c:42:
/wrkdirs/usr/ports/emulators/virtualbox-ose-additions-legacy/work/VirtualBox-5.2.44/src/VBox/Additions/freebsd/vboxvfs/vboxvfs.h:242:2:
error: unknown type name 'uma_zone_t'
242 | uma_zone_t sf_node_pool;
| ^
Reported by: pkg-fallout
MFH: 2024Q3 |
5.2.44_20 09 Jul 2024 21:30:58
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-nox11}-legacy: add vboxinit start/stop script for VMs
which is controlled from phpvirtualbox
Set the "Startup Mode" to "Automatic" for the virtual machine in
phpvirtualbox to automatically start the virtual machine during OS boot.
This script also stops virtual machines during reboot even if
vboxinit_enable="YES" is not present in /etc/rc.conf.
phpvirtualbox uses the "Web Service" (WEBSERVICE) to configure and
manage virtual machines, so we install the script only when the
WEBSERVICE option is enabled.
PR: 280062 |
5.2.44_19 01 Jul 2024 20:27:23
    |
Rene Ladan (rene)  |
all: drop support for FreeBSD 13.2 which reached EOL today
Thanks again to jbeich for noticing various things I overlooked.
Reviewed by: acm, ashish, eduardo, ehaupt, eugen, jbeich, martymac, mat,
nobukata, sunpoet, tagattie, yuri, arrowd, kde
Differential Revision: https://reviews.freebsd.org/D45141 |
5.2.44_19 28 Jun 2024 19:08:33
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-nox11,-kmod,-additions,-additions-nox11}-legacy: fix
build with llvm15+, fix run with PAE on i386
* Fix build with llvm15+ from ports and from base:
- ISO C++17 does not allow 'register' storage class specifier;
- require -fPIC on i386.
* Fix load kernel modules on host and guest i386 if kernel compiled with
PAE option: add non-default option PAE to ports.
Based on patches from mi@.
PR: 279257 224616
Approved by: vbox (maintainer, timeout 1 month and 6 years) |
5.2.44_18 28 May 2024 17:38:52
    |
Muhammad Moinur Rahman (bofh)  |
emulators/virtualbox-ose-legacy: Refactor DOCS
Although the documentation builds fine currently however the doc
UserManual.pdf fails to build from the docbook with pdflatex from TeX
2024. So decouple the documentation file from the builds as an
additional DISTFILE. As this version is no longer supported by upstream
it is highly unlikely that the build of the documentation will be fixed
by upstream. Or unless someone has enough enthusiasm to fix the build
of the documentation once TeX 2024 hits the tree.
Approved by: portmgr (blanket)
Sponsored by: Nepustil |
5.2.44_17 20 Jan 2024 00:41:39
    |
Jan Beich (jbeich)  |
multimedia/libvpx: update 1.14.0
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.13.1..v1.14.0
Reported by: portscout |
5.2.44_16 07 Aug 2023 16:34:07
    |
Gleb Popov (arrowd)  |
audio/pulseaudio: Update to 16.1
Bump PORTREVISION on consumers.
Sponsored by: Serenity Cybersecurity, LLC
PR: 262713 |
5.2.44_15 19 Jul 2023 10:12:44
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-nox11}-legacy: fix PORTREVISION and option MANUAL =>
DOCS
1. Fix PORTREVISION in master port emulators/virtualbox-ose-legacy for
slave port emulators/virtualbox-ose-nox11-legacy.
2. Rename in slave port emulators/virtualbox-ose-nox11-legacy MANUAL to
DOCS - in master port was renamed in
https://cgit.freebsd.org/ports/commit?id=a0ef5898beb4c6a73e9d94aaa452c0eb37cbb14c.
3. Bump emulators/virtualbox-ose-nox11-legacy.
Approved by: arrowd (mentor)
Differential Revision: https://reviews.freebsd.org/D41071
MFH: 2023Q3 |
5.2.44_15 28 Jun 2023 12:02:00
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose{,-legacy}: sort out options
Sort out options: order (portlint), convert to OPTION_*.
Add entry in "Troubleshooting" about "VERR_NO_MEMORY".
Force devel/llvm15 for emulators/virtualbox-ose-legacy on recent 14 with
llvm16 in base.
PR: 200764 252227
Approved by: arrowd (mentor)
Differential Revision: https://reviews.freebsd.org/D40751 |
5.2.44_14 06 Jun 2023 10:03:52
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose-legacy: build fails on FreeBSD 12.4, 13.1 and 13.2 (all
supported releases)
llvm 13 and 14 included in FreeBSD fails to compile, force llvm 15 on
all versions of the FreeBSD except lastest 13 and 14 where the llvm 15
is included.
Keep possibility to define different llvm via VBOX_LLVM_VER in make.conf.
PR: 265539
Reported by: freebsd@charles.lecklider.org
Tested by: grahamperrin
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D40408 |
5.2.44_14 19 May 2023 15:50:33
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose[-legacy]: rename option MANUAL to DOCS and make it
enabled by default
PR: 266992
Approved by: arrowd (mentor)
Differential Revision: https://reviews.freebsd.org/D40118 |
5.2.44_13 18 May 2023 19:48:47
    |
Vladimir Druzenko (vvd)  |
emulators/virtualbox-ose[-legacy]: VM VirtualBox Manager: Help menu: unable to
open external browser
While here sort out LOCALBASE, PREFIX, VBOX_DIR, VBOX_ETC
PR: 266778
Approved by: arrowd (mentor)
Differential Revision: https://reviews.freebsd.org/D40119 |
5.2.44_13 23 Apr 2023 09:09:58
    |
Gerald Pfeifer (gerald)  |
*: Bump PORTREVISIONs for math/mpc update to 1.3.1 |
5.2.44_12 11 Feb 2023 08:46:45
    |
Jan Beich (jbeich)  |
multimedia/libvpx: update 1.13.0
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.12.0..v1.13.0
Reported by: portscout |
5.2.44_11 28 Dec 2022 18:55:24
    |
Li-Wen Hsu (lwhsu)  |
emulators/virtualbox-ose-additions*: Fix patch and build (for non-legacy)
PR: 268603
Fixes: c35a71080172 emulators/virtualbox-ose: fix builds on CURRENT |
5.2.44_11 19 Dec 2022 21:30:08
    |
Graham Perrin (grahamperrin)  Author: Mateusz Guzik |
emulators/virtualbox-ose: fix builds on CURRENT
SAVENAME was retired by D36542 https://reviews.freebsd.org/D36542
Bug 267079 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=267079
involves failures to build four ports, for VirtualBox guest additions,
on FreeBSD-CURRENT:
emulators/virtualbox-ose-additions
emulators/virtualbox-ose-additions-legacy
emulators/virtualbox-ose-additions-nox11
emulators/virtualbox-ose-additions-nox11-legacy
Fix bug 267079 for CURRENT 1400068 and greater by hiding the use of
SAVENAME in patch-src_VBox_Additions_freebsd_vboxvfs_vboxvfs__vnops.c
for:
emulators/virtualbox-ose
emulators/virtualbox-ose-legacy
PR: : 267079
Author: : mjg
Approved by: : ports-committers (lwhsu), khng
Differential revision: https://reviews.freebsd.org/D37074 |
5.2.44_11 19 Dec 2022 14:44:58
    |
Muhammad Moinur Rahman (bofh)  |
Mk/**tex.mk: Convert bsd.tex.mk to USES=tex
- Update all the consumers to use USES=tex
- USE_TEX=yes is the old way of writing USES=tex which has been removed
and replaced in all ports
- Almost all of the USE_TEX features remains unchanged
- Some consumers had the same variables defined both in the mk
infrastructure and also in the ports which have been removed from the
ports as those are redundant.
In case any of the consumers are failing to build please make sure that
the nexessary USES=tex is there. Unlike previous USE_TEX=yes will no
longer load the required VARS for tex and related dependencies.
Reviewed by: portmgr
Approved by: portmgr (blanket) |
5.2.44_11 11 Sep 2022 10:20:14
    |
Felix Palmen (zirias)  |
Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.
Document in CHANGES.
PR: 266034
Exp-run by: antoine
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36349 |
07 Sep 2022 21:58:51
    |
Stefan Eßer (se)  |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
5.2.44_11 07 Sep 2022 21:10:59
    |
Stefan Eßer (se)  |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
5.2.44_11 22 Aug 2022 18:14:28
    |
John Baldwin (jhb)  |
emulators/virtualbox-ose-additions-legacy: Remove devclass from DRIVER_MODULE on
recent main.
Reviewed by: madpilot
Differential Revision: https://reviews.freebsd.org/D35953 |
5.2.44_11 05 Jul 2022 17:51:17
    |
Bernhard Froehlich (decke)  |
*/*: Release my babies from my "created by" comments |
5.2.44_11 04 Jul 2022 19:35:11
    |
Guido Falsi (madpilot)  |
emulators/virtualbox-ose-legacy: Mark BROKEN on 13.1
The legacy version of virtualbox fails on 13.1 with this error:
error: ran out of registers during register allocation
Mark as broken there too.
Reported by: VVD (IRC user), diizzy |
5.2.44_11 31 May 2022 08:22:29
    |
Guido Falsi (madpilot)  |
emulators/virtualbox-ose-legacy: Mark as BROKEN on recent head
Fails to build on recent FreeBSD 14 due to missing symbols errors
in new libc++ |
5.2.44_11 10 May 2022 20:48:31
    |
John Baldwin (jhb)  |
emulators/virtualbox-ose-kmod*: Tie to a specific release branch.
Use a more restricted range of supported __FreeBSD_version values for
the virtualbox kernel module since it uses internal KPIs for which KBI
stability is not guaranteed. DECLARE_MODULE_TIED would tie the module
to a specific __FreeBSD_version which would cause the module to stop
loading when an SA or EN is pushed on a release branch. Instead, use
DECLARE_MODULE_MAXVER with an upper bound that is limited to the range
of a releng branch so that a module built on X.Y will load on X.Y with
SAs or ENs applied but will fail to load on X.Y-1 or X.Y+1.
Reviewed by: kevans, imp, madpilot, lwhsu (earlier version)
Differential Revision: https://reviews.freebsd.org/D16119 |
5.2.44_11 10 Apr 2022 19:11:41
    |
Charlie Li (vishwin)  |
textproc/libxml2: bump all LIB_DEPENDS consumers
This is a separate commit to facilitate easier cherry-picking for
quarterly.
PR: 262853, 262940, 262877, 263126
Approved by: fluffy (mentor) |
5.2.44_10 26 Mar 2022 08:27:27
    |
Matthias Fechner (mfechner)  |
textproc/libxml2: bump all dependencies
This should make sure that all dependent ports will pick
up the new version commited with a13ec21cd733f67a9fc0dc00ab45268bdc236246 |
5.2.44_9 19 Mar 2022 19:42:02
    |
Guido Falsi (madpilot)  Author: Neel Chauhan |
emulators/virtualbox-ose-kmod-legacy: Fix kernel panic in DHCP bridge mode
PR: 262656 |
5.2.44_9 09 Feb 2022 14:24:30
    |
Guido Falsi (madpilot)  Author: Derek Schrock |
emulators/virtualbox-ose(-legacy): Take advantage of ccache
This patch teaches the virtualbox ports to take advantage of ccache
if the ports are configured to use it.
PR: 254616 |
5.2.44_9 09 Feb 2022 14:20:54
    |
Guido Falsi (madpilot)  |
emulators/virtualbox-ose-legacy: Fix build on head
The legacy version of virtualbox fails to build on head with
clang > 11, so force using clang 11 there.
PR: 254616 (suggested in) |
5.2.44_9 05 Feb 2022 20:37:14
    |
Guido Falsi (madpilot)  |
emulators/virtualbox-ose-additions(-legacy): Fix build on recent head
On recent head, after src commit 66c5fbca7719dc, the insmntque1(9)
function arguments changed.
Adapt virtualbox code, following what has been done in base with
other filesystems migrating to insmntque(9). |
5.2.44_9 23 Nov 2021 22:11:40
    |
Stefan Eßer (se)  |
*/*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").
Approved by: portmgr (blanket) |
5.2.44_9 21 Oct 2021 22:32:36
    |
Guido Falsi (madpilot)  Author: Graham Perrin |
emulators/virtualbox-ose: Update description and message files
- Add updated information about supported versions, installation
commands and mitigation for a known issue.
- Removed reference to the wiki page.
Reviewed on github:
https://github.com/freebsd/freebsd-ports/pull/115
PR: 254412 |
5.2.44_9 17 Oct 2021 09:32:33
    |
Guido Falsi (madpilot)  |
emulators/virtualbox-ose-additions-legacy: Import improvements from non legacy
port
Import changes from commit 1b2394551c0385 to legacy port:
In the virtualbox virtual filesystem code we ship as a patch some
code in an else block is commented out. This produces a code path
in which a pointer variable is dereferenced in an unassigned state,
causing random crashes.
Lacking a better fix, give a default value of NULL to the pointer,
which at least avoids the random pointer dereference issue.
PR: 255386
Alsso import fix for building on recent head from cec55f41e10f13:
Fix build after head commit b4a58fbf640409a1 (vfs: remove cn_thread)
MFH: 2021Q4 |
5.2.44_8 10 Oct 2021 19:44:42
    |
Baptiste Daroussin (bapt)  |
INSTALLS_ICONS: retire the macro and rework the related dependencies
While here, make sure gtk-update-icon-cache is only on run dependency
where added as a dependency
Enforce gtk3 to depend on gtk-update-icon-cache (previously it was
inheriting the dependency) |
5.2.44_8 09 Oct 2021 00:45:18
    |
Jan Beich (jbeich)  |
multimedia/libvpx: update 1.11.0
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.10.0..v1.11.0
Reported by: portscout, Repology |
5.2.44_7 04 Sep 2021 16:22:00
    |
Guido Falsi (madpilot)  Author: Tom Rushworth |
emulators/virtualbox-ose(-legacy): Make VirtualBox limit AIO requests
Import patch to teach VirtualBox to check availability of AIO
resources before trying to allocate more.
This prevents crashes when using AIO in VirtualBox.
PR: 168298 |
5.2.44_6 30 Jun 2021 12:47:25
    |
Guido Falsi (madpilot)  |
emulators/virtualbox-ose-legacy: Fix additions build on recent HEAD
Apply same fix used for the main port in commit ef04eff33cf626:
Src HEAD commit 6d3e78ad6c11 vfs_quotactl function signature, adapt
virtualbox code to be able to compile there too.
Reported by: koobs, dim
MFH: 2021Q2 |
5.2.44_6 22 Jun 2021 18:53:08
    |
Kevin Bowling (kbowling)  |
graphics/mesa-libs: Bump reverse deps for libglvnd
Per discussion with bapt on helping pkg handle the changing of these
deps and avoiding impossible upgrade senarios.
PR: 246767
Reviewed by: manu, bapt
Approved by: x11
Differential Revision: https://reviews.freebsd.org/D30824 |
5.2.44_5 14 Jun 2021 20:02:23
    |
Guido Falsi (madpilot)  |
emulators/virtualbox-ose-kmod-legacy: Fix hang at module loading time
After src commit e266a0f7f001 a module is not allowed to call
kern_kldload while being loaded. The virtualbox module is doing
exactly this though. virutalbox used to do this because the ng_ether
netgraph node did not provide version information in the past and
there was no way to properly depend on it.
ng_ether has gained versioning information in base r238844 more
than ten years ago, so we can now unconditionally properly depend
on it, since this revision is now included in all supported FreeBSD
versions.
Thanks to Tomoaki AOKI for identifying the base commuit exposing
the issue.
Backport fix to legacy port.
WHile here also merge a double patch for the smae file.
PR: 256505
MFH: 2021Q2 |
5.2.44_5 06 May 2021 12:15:35
    |
Mathieu Arnold (mat)  |
*: Three ports missed in the RESTRICTED removal. |
5.2.44_5 30 Apr 2021 11:11:57
    |
Guido Falsi (madpilot)  |
emulators/virtualbox-ose-legacy: limit portscout reporting
The VirtualBox legacy ports track version 5.x, limit portscout
reporting accordingly. |
5.2.44_5 06 Apr 2021 14:31:13
    |
Mathieu Arnold (mat)  |
all: Remove all other $FreeBSD keywords. |
5.2.44_5 06 Apr 2021 14:31:07
    |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
5.2.44_5 14 Mar 2021 21:44:13
  |
madpilot  |
Add patch to fix OSS audio to virtualbox-ose-legacy
PR: 237472
Submitted by: Martin Birgmeier <d8zNeCFG@aon.at> |
5.2.44_4 09 Mar 2021 18:27:36
  |
madpilot  |
- Update VirtualBox OSE to 6.1.18
- Old VirtualBox OSE 5.2.44 preserved as "-legacy" versions of the
ports (repocopied)
- Add back extra patch removed in r528258, actually required to
build DEBUG kmod
- Correctly define WITH_DEBUG when enabling the DEBUG option, so
binaries are not stripped
Please note that this new version supports only amd64 CPUs. If you need
to use older hardware please install the legacy ports.
Note that moving VM snapshots across major updates is unsupported, it's
strongly suggested to properly shutdown VMs before upgrading, please
check UPDATING for further details.
(Only the first 15 lines of the commit message are shown above ) |
4.2.22 09 Sep 2014 19:18:28
  |
marino  |
Remove virtualbox-*-legacy due to lack of staging
The virtualbox-ose-kmod-legacy port is staged, but it has no purpose
without the unstaged virtualbox-ose-legacy port, so both ports have
been removed at the same time. |
4.2.22 23 Jul 2014 16:44:28
  |
bapt  |
Reset maintainership for ports not staged with no pending PR
With hat: portmgr |
4.2.22 10 Jun 2014 07:39:02
  |
olgeni  |
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) |
4.2.22 20 Mar 2014 18:15:36
  |
jkim  |
Remove unused patches. |
4.2.22 20 Mar 2014 18:15:07
  |
jkim  |
Prefer USES=tar:bzip2. |
4.2.22 05 Mar 2014 20:31:03
  |
jkim  |
- Remove devel/dev86 from BUILD_DEPENDS and devel/bcc from CONFLICTS. It
has not been used for very long time.
- Remove devel/yasm from BUILD_DEPENDS for kernel module. It is actually
unnecessary for building kmod. |
4.2.22 21 Feb 2014 21:22:57
  |
jkim  |
Fix build after re-appearance of converters/libiconv on 10+ (r341775).
Obtained from: svn.redports.org/virtualbox
PR: ports/186847 |
4.2.22 16 Jan 2014 16:45:30
  |
decke  |
- Update to 4.2.22
- Convert USE_PYDISTUTILS=easy_install to USE_PYDISTUTILS=yes
- Add patch to fix building with new gsoap [1]
- Add direct dependency on qt4-opengl [2]
PR: ports/185579 [2]
Security: CVE-2013-5892
Submitted by: Jung-uk Kim <jkim@FreeBSD.org> [1]
Jimmy Olgeni <olgeni@FreeBSD.org> [2] |
4.2.20_1 13 Jan 2014 21:00:04
  |
rene  |
Python cleanup:
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2
- USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes
Reviewed by: python (mva, rm)
Approved by: portmgr-lurkers (mat) |
4.2.20_1 03 Jan 2014 00:46:47
  |
bapt  |
Part 1 at removing now useless FETCH_ARGS redifition |
4.2.20_1 17 Dec 2013 21:44:58
  |
decke  |
- Disable stripping away RPATH on FreeBSD for Hardened-R3 binaries.
This fixes the remaining compat9x problems because the virtualbox
buildsystem did remove our RPATH on some binaries if hardening is
enabled. The hardening is a collection of additional safety checks
for all virtualbox suid binaries and is always enabled.
Reported by: many FreeBSD 10 users |
4.2.20 14 Dec 2013 18:39:21
  |
mva  |
- make lang/python an explicit dependency to get rid of the
implicit one
Reported by: exp-run (PR 184591)
Approved by: portmgr (blanket) |
4.2.20 13 Dec 2013 11:17:20
  |
decke  |
- Update to virtualbox-ose 4.2.20_1
- This update pulls in many changes from the port and brings better support
for FreeBSD 10 and GCC from ports. I am doing that in preparation of the
upcoming VirtualBox 4.3 update that should land soon. |
4.1.24_1 22 Oct 2013 13:57:35
  |
amdmi3  |
- Remove manual creation and removal of share/applications, as it's now in the
mtree (categories starting with [bce])
Approved by: portmgr (bdrewery) |
4.1.24_1 20 Sep 2013 16:43:53
  |
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
emulators) |
4.1.24_1 06 Sep 2013 15:06:25
  |
madpilot  |
Fix build on head after iconv change.
Approved by: portmgr (bapt, implicit) |
4.1.24_1 06 Sep 2013 08:37:48
  |
decke  |
Add explicit iconv dependency. The port requires variable ICONV_LIB
defined in the iconv USES Makefile to build correctly on 8.x and
9.x after the iconv migration of the ports tree.
PR: ports/181854
Submitted by: Dave Hayes <dave@jetcafe.org> |
4.1.24_1 03 Sep 2013 10:23:55
  |
bapt  |
Add an explicit dependency on pkgconf |
4.1.24_1 11 Jul 2013 16:26:27
  |
sunpoet  |
- Update to 7.31.0
- Bump PORTREVISION for ftp/curl shlib change
- Add TEST_DEPENDS
- Convert to new options framework
- Adjust options:
- Add COOKIES
- Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1]
- Add GSSAPI and SPNEGO [2]
- Remove KERBEROS4
- Rename LIBIDN to IDN
- Remove TRACKMEMORY [1]
- Sort option handler
- Add SLAVEDIRS: ftp/curl-hiphop
- Cosmetic change
- Cleanup Makefile header
- While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile
Changes: http://curl.haxx.se/changes.html
PR: ports/172325 (-exp run), ports/177369 (based on) [1]
Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2]
Exp run by: miwi |
4.1.24 02 Jun 2013 18:55:09
  |
eadler  |
virtualbox-ose-* is incompatible with newer versions of python.
Approved by: decke |
26 Apr 2013 12:35:51

|
bapt  |
Remove USE_CDRTOOLS from bsd.port.mk
This macros has been useless since cdrtools-cjk port has gone.
This macros also lead to badly handled dependencies assuming that the dependency
on cdrtools was most BUILD and RUN dependency. While most of the time it is
simply a RUN dependency and sometime a build one.
While here:
- Trim some headers
- Convert some ports to optionsng
- Convert some ports to USES= gettext |
4.1.24 03 Jan 2013 13:37:13
  |
decke  |
- Update to 4.1.24
- Fix building with libxslt newer than 1.1.26
Obtained from: https://www.virtualbox.org/ticket/10940 |
4.0.16_2 09 Oct 2012 22:12:14
  |
linimon  |
Force numerous ports that fail to build with clang over to instead always
rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to
accomplish this.
The ports chosen were ports that blocked 2 or more ports from building with
clang. (There are several hundred other ports that still fail to build with
clang, even with this patch. This is merely one step along the way.)
Those interested in fixing these ports with clang, and have clang as their
default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes.
For those who have gcc as their default compiler, this change is believed
to cause no change.
Hat: portmgr
Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various
combinations of patch/no-patch and flag settings. |
4.0.16_2 12 Sep 2012 20:13:35
  |
decke  |
- Cleanup MASTER_SITES and use upstream mirror as primary
Discussed with: beat (for chruetertee mirrors) |
4.0.16_2 04 Aug 2012 07:54:44
 |
decke  |
- Add missing VNC IPv6 patch
- Convert to optionsng [1]
Submitted by: bapt [1] |
4.0.16_2 01 Jul 2012 23:43:40
 |
jgh  |
- revert previous commit, index breakage
PR: ports/169224 |
4.0.16_2 01 Jul 2012 23:08:51
 |
jgh  |
- re-order, include bsd.port.pre.mk so SRC_BASE is defined before referenced
- pet portlint on placement of LICENSE
PR: ports/169224
Submitted by: jgh@
Approved by: maintainer timeout ( 14 days ) |
4.0.16_2 06 Jun 2012 06:44:38
 |
miwi  |
- Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4
Review by: bapt, David Naylor (kde team) |
4.0.16_2 01 Jun 2012 05:26:28
 |
dinoex  |
- update png to 1.5.10 |
4.0.16_1 09 Mar 2012 21:57:44
 |
decke  |
- Unbreak by disabling broken VMM testcase. It seems to be an incompatibility
with recently updated yasm.
Submitted by: pointyhat (via pav)
Feature safe: yes |
4.0.16 08 Mar 2012 15:23:53
 |
decke  |
- Update Guest Additions Mirrorsite
PR: ports/165597
Submitted by: Seiji Ariga <freebsd@khaotic.net> |
4.0.16 08 Mar 2012 14:20:33
 |
decke  |
- Remove empty line at end of file
Reported by: Alex Kozlov <ak@FreeBSD.org> |
4.0.16 05 Mar 2012 22:08:22
 |
pav  |
- Mark BROKEN on amd64: fails to compile
kmk: ***
[/work/a/ports/emulators/virtualbox-ose-legacy/work/VirtualBox-4.0.16_OSE/out/freebsd.amd64/release/obj/VMM/tstAsmStructsAsm.mac]
Error 1
kmk: *** Deleting file
Reported by: pointyhat |
4.0.16 21 Feb 2012 12:43:15
 |
decke  |
- Update to 4.0.16
- Fix lib32 checks to use /usr/lib32/libc.so
Obtained from: redports.org/~virtualbox/ |
3.2.12_4 18 Feb 2012 10:18:33
 |
mva  |
- Update devel/sdl12 to 1.2.15
- Update audio/sdl_mixer to 1.2.15
- Update graphics/sdl_image to 1.2.12
- Update graphics/sdl_ttf to 2.0.11
- Update graphics/sdl_gfx to 2.0.23
- Update net/sdl_net to 1.2.8
- Bump PORTREVISIONs on ports that depend on one or more packages due to
ABI and shared library version changes
- Update Mk/bsd.sdl.mk accordingly for the new shared library versions
Tested by: exp-run by pav |
3.2.12_3 14 Jan 2012 08:57:23
 |
dougb  |
In the rc.d scripts, change assignments to rcvar to use the
literal name_enable wherever possible, and ${name}_enable
when it's not, to prepare for the demise of set_rcvar().
In cases where I had to hand-edit unusual instances also
modify formatting slightly to be more uniform (and in
some cases, correct). This includes adding some $FreeBSD$
tags, and most importantly moving rcvar= to right after
name= so it's clear that one is derived from the other. |
3.2.12_3 01 Jul 2011 13:24:43
 |
decke  |
- Fix build on 9-CURRENT with latest CAM changes [1]
- Add stop command and delay parameter to vboxheadless rc script [2]
- Bump PORTREVISION
Submitted by: Jung-uk Kim <jkim@FreeBSD.org> [1],
Franco Ricci <franco.ricci@phys.uniroma1.it> [2] |
3.2.12_2 22 May 2011 09:15:09
 |
decke  |
- Introduce -legacy ports
- Add vboxheadless startscript [1]
- Add vboxwebsrv startscript [2]
- Change CONFLICTS to CONFLICTS_INSTALL [3]
- Remove stale mirror
- Bump PORTREVISION
PR: ports/156699 (based on) [3]
Submitted by: Stefan Tollkuehn <stefan.tollkuehn@editura.de>, [1][2]
Raul Gigea <raul.gigea@editura.de>, [1]
Tobias Oberstein <tobias.oberstein@tavendo.de>, [1]
Emil <the_mix_room@hotmail.com> [3]
Thanks to: dougb@, [1][2]
Cr4zi3/EFNet, [2]
crsd [2] |