forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Framework: partially sync with upstream
Taken from: HardenedBSD
- Loading branch information
Showing
5 changed files
with
35 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# $FreeBSD$ | ||
# | ||
# Establish Ada-capable compiler as a build dependency | ||
# To change default compiler, define ADA_DEFAULT in make.conf to 5 | ||
# To change default compiler, define ADA_DEFAULT in make.conf | ||
# | ||
# Feature: ada | ||
# Usage: USES=ada | ||
# Valid ARGS: 5, 6, run | ||
# Valid ARGS: run | ||
# | ||
# MAINTAINER: [email protected] | ||
|
||
|
@@ -15,16 +15,6 @@ _INCLUDE_USES_ADA_MK= yes | |
CC= ada | ||
ADAXX= gcc6 # framework default | ||
|
||
. if ${ada_ARGS:M5} | ||
ADAXX= gcc5 | ||
. elif ${ada_ARGS:M6} | ||
ADAXX= gcc6 | ||
. elif defined(ADA_DEFAULT) | ||
. if ${ADA_DEFAULT} == 5 | ||
ADAXX= gcc5 | ||
. endif | ||
. endif | ||
|
||
. if ${ada_ARGS:Mrun} | ||
RUN_DEPENDS+= ${LOCALBASE}/${ADAXX}-aux/bin/ada:lang/${ADAXX}-aux | ||
. endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,30 @@ they are unavoidable. | |
You should get into the habit of checking this file for changes each time | ||
you update your ports collection, before attempting any port upgrades. | ||
|
||
|
||
20200613: | ||
AFFECTS: users of editors/libreoffice | ||
AUTHOR: [email protected] | ||
|
||
LibreOffice was updated to 6.4 branch with some critical changes: | ||
- GTK2 option is obsolete by upstream | ||
- GTK3 option is not more set by default because of unstable yet and have visual glitches | ||
- QT5 option is set by default to provide comfy visual style for every user | ||
- KDE option was renamed to KF5 follows upstream | ||
|
||
Please re-run "make config" to pick up the new defaults | ||
|
||
20200610: | ||
AFFECTS: users of www/node | ||
AUTHOR: [email protected] | ||
|
||
The www/node port has been updated to Node.js v14.0.0, the latest | ||
upstream release. This is a major release, including many significant | ||
changes. Users are encouraged to read the release announcements before | ||
upgrading: | ||
|
||
https://nodejs.org/en/blog/release/v14.0.0/ | ||
|
||
20200602: | ||
AFFECTS: users of www/radicale | ||
AUTHOR: [email protected] | ||
|