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.
Taken from: FreeBSD
- Loading branch information
Showing
8 changed files
with
101 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,31 @@ in the release notes and/or placed into UPDATING. | |
|
||
All ports committers are allowed to commit to this file. | ||
|
||
20150319: | ||
AUTHOR: [email protected] | ||
|
||
MASTER_SITE GHR (GITHUB_RELEASE) has been removed. The same functionality | ||
can be achieved with just USE_GITHUB/GH_ACCOUNT/GH_PROJECT. GH_TAGNAME | ||
defaults to DISTVERSION. If the tag needs to be adjusted then change | ||
GH_TAGNAME. No GH_COMMIT is needed. | ||
|
||
20150319: | ||
AUTHOR: [email protected] | ||
|
||
USE_GITHUB has been updated to make GH_COMMIT optional. Using this new | ||
scheme allows only setting the _tag_ or _commit hash_ in GH_TAGNAME and | ||
not having to know the hash for a tag. This scheme will download a tarball | ||
that has a different checksum than before due to a changed directory name | ||
for extraction. | ||
|
||
GH_TAGNAME can now be any length of the hash as long as it is unique. There | ||
is no longer a 7-character requirement. | ||
|
||
The following MASTER_SITES are provided to retain the old checksum and | ||
directory structure (that require GH_COMMIT): | ||
GH -> GHL | ||
GITHUB -> GITHUB_LEGACY | ||
|
||
20150305: | ||
AUTHOR: [email protected] | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# $FreeBSD$ | ||
# | ||
# handle fonts | ||
# Feature: fonts | ||
# Usage: USES=fonts | ||
|
||
.if !defined(_INCLUDE_USES_FONTS_MK) | ||
.if !empty(fonts_ARGS) | ||
IGNORE= USES=fonts - expecting no arguments | ||
.endif | ||
|
||
RUN_DEPENDS+= fc-cache:${PORTSDIR}/x11-fonts/fontconfig \ | ||
mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \ | ||
mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale | ||
|
||
FONTNAME?= ${PORTNAME} | ||
FONTSDIR?= ${PREFIX}/lib/X11/fonts/${FONTNAME} | ||
PLIST_FILES+= "@fcfontsdir ${FONTSDIR}" | ||
SUB_LIST+= FONTSDIR="${FONTSDIR}" | ||
PLIST_SUB+= FONTSDIR="${FONTSDIR}" | ||
.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
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