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: FreeBSD
- Loading branch information
Showing
11 changed files
with
72 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
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 |
---|---|---|
|
@@ -60,8 +60,12 @@ GHOSTSCRIPT_DEFAULT?= agpl | |
IMAGEMAGICK_DEFAULT?= 7 | ||
# Possible values: 7, 8, 11, 12, 13, 14, 15, 16 | ||
JAVA_DEFAULT?= 8 | ||
# Possible values: 2.0.12 | ||
LAZARUS_DEFAULT?= 2.0.12 | ||
# Possible values: 2.0.12, 2.3.0 | ||
.if !defined(WANT_LAZARUS_DEVEL) | ||
LAZARUS_DEFAULT?= 2.0.12 | ||
.else | ||
LAZARUS_DEFAULT?= 2.3.0 | ||
.endif | ||
# Possible values: rust, legacy | ||
.if empty(ARCH:Naarch64:Narmv6:Narmv7:Namd64:Ni386:Npowerpc64:Npowerpc64le:Npowerpc) | ||
LIBRSVG2_DEFAULT?= rust | ||
|
@@ -70,7 +74,7 @@ LIBRSVG2_DEFAULT?= legacy | |
.endif | ||
# Possible values: c7 | ||
LINUX_DEFAULT?= c7 | ||
# Possible values: 70, 80, 90, 10, 11, 12, -devel (to be used when non-base compiler is required) | ||
# Possible values: 70, 80, 90, 10, 11, 12, 13, -devel (to be used when non-base compiler is required) | ||
# Please give notice to the Graphics Team ([email protected]) in advance before | ||
# bumping the LLVM version. | ||
.if ${ARCH} == powerpc | ||
|
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 |
---|---|---|
|
@@ -997,10 +997,16 @@ FreeBSD_MAINTAINER= [email protected] | |
# DISABLE_SIZE - Do not check the size of a distfile even if the SIZE field | ||
# has been specified in distinfo. This is useful | ||
# when using an alternate FETCH_CMD. | ||
# | ||
# PKG_CREATE_VERBOSE - If set, pass the -v option to pkg create which | ||
# PKG_CREATE_VERBOSE | ||
# - If set, pass the -v option to pkg create which | ||
# ensures periodic output during packaging and | ||
# will help prevent timeouts by build monitors | ||
# PKG_COMPRESSION_FORMAT | ||
# - the compression format used when creating a package, see | ||
# pkg-create(8) for valid formats | ||
# PKG_COMPRESSION_LEVEL | ||
# - the compression level to use when creating a package, see | ||
# pkg-create(8) for valid values | ||
# | ||
# End of the list of all variables that need to be defined in a port. | ||
# Most port authors should not need to understand anything after this point. | ||
|
@@ -3483,6 +3489,9 @@ _EXTRA_PACKAGE_TARGET_DEP+= ${WRKDIR_PKGFILE} | |
|
||
.if !target(do-package) | ||
PKG_CREATE_ARGS+= -f ${PKG_COMPRESSION_FORMAT} | ||
.if defined(PKG_COMPRESSION_LEVEL) | ||
PKG_CREATE_ARGS+= -l ${PKG_COMPRESSION_LEVEL} | ||
.endif | ||
PKG_CREATE_ARGS+= -r ${STAGEDIR} | ||
. if defined(PKG_CREATE_VERBOSE) | ||
PKG_CREATE_ARGS+= -v | ||
|
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,26 @@ 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. | ||
|
||
20210823: | ||
AFFECTS: users of mail/mu | ||
AUTHOR: [email protected] | ||
|
||
mail/mu now uses XDG Base Directory Specification for the default | ||
locations for various files. The mu database now lives under | ||
~/.cache/mu rather than ~/.mu by default. After upgrading, | ||
move the contents under ~/.mu to ~/.cache/mu. | ||
|
||
20210823: | ||
AFFECTS: users of mail/postfixadmin | ||
AUTHOR: [email protected] | ||
|
||
The 3.2->3.3 upgrade requires generating a new setup password hash. | ||
The normal post-upgrade visit to setup.php will walk you through the | ||
steps. | ||
|
||
For more information, see the "Version 3.3" section of the change log: | ||
https://github.com/postfixadmin/postfixadmin/blob/postfixadmin-3.3.9/CHANGELOG.TXT | ||
|
||
20210818: | ||
AFFECTS: users of databases/redis | ||
AUTHOR: [email protected] | ||
|