Date: Sun, 26 May 2024 19:45:52 GMT From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 4b57abb4de44 - main - games/punchy: Fix LICENSE_DISTFILES Message-ID: <202405261945.44QJjqI6096869@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by dbaio: URL: https://cgit.FreeBSD.org/ports/commit/?id=4b57abb4de44e9626f31023786d0e1057715618c commit 4b57abb4de44e9626f31023786d0e1057715618c Author: Danilo G. Baio <dbaio@FreeBSD.org> AuthorDate: 2024-05-26 19:44:24 +0000 Commit: Danilo G. Baio <dbaio@FreeBSD.org> CommitDate: 2024-05-26 19:45:26 +0000 games/punchy: Fix LICENSE_DISTFILES This port, like many other Rust ports, brings numerous dependencies to the distinfo, and by default, LICENSE_DISTFILES applies to all of them. However, due to license permission constraints, it was removing about 800 distfiles with `make clean-restricted`, which are also used by many other ports. With this change, the license constraint will apply only to the port itself. Approved by: portmgr (blanket) --- games/punchy/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/games/punchy/Makefile b/games/punchy/Makefile index 07a9a2253398..25e674738ea7 100644 --- a/games/punchy/Makefile +++ b/games/punchy/Makefile @@ -10,6 +10,7 @@ WWW= https://fishfolk.org/games/punchy/ LICENSE= CC-BY-NC-4.0 MIT LICENSE_COMB= multi +LICENSE_DISTFILES_CC-BY-NC-4.0= ${DISTNAME}${EXTRACT_SUFX} LIB_DEPENDS= libasound.so:audio/alsa-lib \ libudev.so:devel/libudev-devd
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202405261945.44QJjqI6096869>