Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 09ECA84D44 for ; Sun, 9 Jul 2023 22:25:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id WB9XkMXV3Grk for ; Sun, 9 Jul 2023 22:25:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 723FA84CFC for ; Sun, 9 Jul 2023 22:25:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 61AB2FBDB; Sun, 9 Jul 2023 22:25:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688941544215420" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 22:25:44 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/toppler To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709222544.61AB2FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688941544215420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 22:25:44 UTC 2023 Modified Files: pkgsrc/games/toppler: Makefile PLIST Log Message: toppler: Add missing gettext dependency. Add NLS support. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/games/toppler/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/toppler/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688941544215420 Content-Disposition: inline Content-Length: 1860 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/toppler/Makefile diff -u pkgsrc/games/toppler/Makefile:1.5 pkgsrc/games/toppler/Makefile:1.6 --- pkgsrc/games/toppler/Makefile:1.5 Fri Mar 20 11:57:45 2020 +++ pkgsrc/games/toppler/Makefile Sun Jul 9 22:25:44 2023 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.5 2020/03/20 11:57:45 nia Exp $ +# $NetBSD: Makefile,v 1.6 2023/07/09 22:25:44 nia Exp $ # DISTNAME= toppler-1.1.6 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=toppler/} @@ -12,10 +12,12 @@ COMMENT= Tower Toppler/Nebulous clone LICENSE= gnu-gpl-v3 GNU_CONFIGURE= yes +USE_TOOLS+= msgfmt msgmerge xgettext USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes USE_LANGUAGES= c c++ +.include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/SDL/buildlink3.mk" .include "../../audio/SDL_mixer/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" Index: pkgsrc/games/toppler/PLIST diff -u pkgsrc/games/toppler/PLIST:1.1 pkgsrc/games/toppler/PLIST:1.2 --- pkgsrc/games/toppler/PLIST:1.1 Sat Jan 5 22:17:04 2013 +++ pkgsrc/games/toppler/PLIST Sun Jul 9 22:25:44 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2013/01/05 22:17:04 wiz Exp $ +@comment $NetBSD: PLIST,v 1.2 2023/07/09 22:25:44 nia Exp $ bin/toppler man/man6/toppler.6 share/applications/toppler.desktop @@ -7,6 +7,14 @@ share/doc/toppler/COPYING share/doc/toppler/ChangeLog share/doc/toppler/NEWS share/doc/toppler/README +share/locale/cs/LC_MESSAGES/toppler.mo +share/locale/de/LC_MESSAGES/toppler.mo +share/locale/eu/LC_MESSAGES/toppler.mo +share/locale/fi/LC_MESSAGES/toppler.mo +share/locale/fr/LC_MESSAGES/toppler.mo +share/locale/pt/LC_MESSAGES/toppler.mo +share/locale/ro/LC_MESSAGES/toppler.mo +share/locale/sv/LC_MESSAGES/toppler.mo share/pixmaps/toppler.xpm share/toppler/toppler.dat share/toppler/toppler.ogg --_----------=_1688941544215420--