diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-01-12 14:33:21 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-01-12 14:33:21 +0000 |
commit | 94817f078473a40920b4a61d9d46edf052f3c1c9 (patch) | |
tree | 9419015f28d81d3b8c7f8074afa8e5cf158c0e64 /games | |
parent | d861678bdefc371a8cb6bf3d2c316437130a0b33 (diff) |
Add Public Domain support to ports license framework. You can now use
LICENSE= PD
Note that although Public Domain is not technically a license, it's
handled in the same way as licenses here, which is a common practice
(Arch, Gentoo, Fedora, Debian, even FOSSology do the same).
Convert all ports which redefine Public Domain LICENSE to LICENSE=PD.
Approved by: portmgr (bapt)
Differential Revision: D4149
Notes
Notes:
svn path=/head/; revision=405874
Diffstat (limited to 'games')
-rw-r--r-- | games/magicor/Makefile | 2 | ||||
-rw-r--r-- | games/naev-data/Makefile | 4 | ||||
-rw-r--r-- | games/robocalypto/Makefile | 5 |
3 files changed, 1 insertions, 10 deletions
diff --git a/games/magicor/Makefile b/games/magicor/Makefile index 7d7c6897fe56..9f75af08f5ff 100644 --- a/games/magicor/Makefile +++ b/games/magicor/Makefile @@ -13,8 +13,6 @@ MAINTAINER= amdmi3@FreeBSD.org COMMENT= Old-school, puzzle game similar to Solomon's Key LICENSE= PD -LICENSE_NAME= Public Domain -LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game diff --git a/games/naev-data/Makefile b/games/naev-data/Makefile index 9ac492563a34..8887bd1b37f7 100644 --- a/games/naev-data/Makefile +++ b/games/naev-data/Makefile @@ -16,16 +16,12 @@ LICENSE= GPLv2 GPLv3 CCBYv3 CCBYSAv3 PD LICENSE_COMB= multi LICENSE_NAME_CCBYv3= Creative Commons Attribution 3.0 Unported license LICENSE_NAME_CCBYSAv3= Creative Commons Attribution-ShareAlike 3.0 Unported license -LICENSE_NAME_PD= Public Domain license LICENSE_TEXT_CCBYv3= The license: CCBYv3 (${LICENSE_NAME_CCBYv3}) is standard,\ please read from the web: http://creativecommons.org/licenses/by/3.0/ LICENSE_TEXT_CCBYSAv3= The license: CCBYSAv3 (${LICENSE_NAME_CCBYSAv3}) is standard,\ please read from the web: http://creativecommons.org/licenses/by-sa/3.0/ -LICENSE_TEXT_PD= The license: PD (${LICENSE_NAME_PD}), please read possible explanation on the web:\ - http://www.teachingcopyright.org/handout/public-domain-faq LICENSE_PERMS_CCBYv3= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_PERMS_CCBYSAv3= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LICENSE_PERMS_PD= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept USES= zip NO_ARCH= yes diff --git a/games/robocalypto/Makefile b/games/robocalypto/Makefile index edda6af6a876..9ab0ae05d175 100644 --- a/games/robocalypto/Makefile +++ b/games/robocalypto/Makefile @@ -17,10 +17,7 @@ EXTRACT_ONLY= PYGGEL-V${DISTVERSION}${DISTVERSIONSUFFIX}${EXTRACT_SUFX} MAINTAINER= ports@FreeBSD.org COMMENT= PYGGEL demo game -LICENSE= Public_Domain_LICENSE -LICENSE_NAME= Public Domain License -LICENSE_TEXT= Public Domain -LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE= PD RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyggel>=0:${PORTSDIR}/graphics/py-pyggel |