Date: Mon, 28 Oct 2024 12:44:27 GMT From: Robert Clausecker <fuz@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: f7b1e63b41d0 - main - games/quadra: fix build on 15-CURRENT Message-ID: <202410281244.49SCiRWZ074559@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=f7b1e63b41d0c8b645c23e0d93c8ad644cbbba4b commit f7b1e63b41d0c8b645c23e0d93c8ad644cbbba4b Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2024-10-26 20:37:37 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2024-10-28 12:42:06 +0000 games/quadra: fix build on 15-CURRENT Link with -lutil to get ftime() which was moved there with recently. This is harmless on older FreeBSD. While we are at it, define LICENSE. Approved by: portmgr (build fix blanket, infrastructure blanket) MFH: 2024Q4 --- games/quadra/Makefile | 5 ++++- games/quadra/files/patch-source__rules.mk | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/games/quadra/Makefile b/games/quadra/Makefile index 6573e7a9cc81..3a7da5315d58 100644 --- a/games/quadra/Makefile +++ b/games/quadra/Makefile @@ -1,6 +1,6 @@ PORTNAME= quadra PORTVERSION= 1.3.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= games MASTER_SITES= http://kbrandt.sdf-eu.org/FreeBSD/distfiles/ \ ftp://ftp.bsdforen.de/pub/BSDForen/distfiles/ \ @@ -10,6 +10,9 @@ MAINTAINER= kbrandt@sdf-eu.org COMMENT= Tetris like game with multiplayer support WWW= https://code.google.com/p/quadra/ +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/LICENSE + LIB_DEPENDS= libpng.so:graphics/png USES= autoreconf gmake localbase sdl tar:bzip2 xorg diff --git a/games/quadra/files/patch-source__rules.mk b/games/quadra/files/patch-source__rules.mk index e06522efadd5..ae74283075ea 100644 --- a/games/quadra/files/patch-source__rules.mk +++ b/games/quadra/files/patch-source__rules.mk @@ -5,7 +5,7 @@ # $Id: rules.mk 684 2008-12-20 07:14:57Z pphaneuf $ -source/quadra: LDLIBS+=$(SDL_LIBS) -lpng -lz -+EXT_LIBS := -lcompat # needed in FBSD for the ftime function ++EXT_LIBS := -lcompat -lutil # needed in FBSD for the ftime function + +source/quadra: LDLIBS+=$(SDL_LIBS) -lpng -lz $(EXT_LIBS) source/quadra: $(QUADRA_OBJECTS) $(SDL_MAIN_OBJ) skelton/lib/libugs_s.a
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202410281244.49SCiRWZ074559>