Received: by mail.netbsd.org (Postfix, from userid 605) id 5B58484D5D; Sun, 10 Feb 2019 12:39:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D5B6984D56 for ; Sun, 10 Feb 2019 12:39:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id DgqJFEDuosPt for ; Sun, 10 Feb 2019 12:39:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4033F84C2B for ; Sun, 10 Feb 2019 12:39:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DF44AFB16; Sun, 10 Feb 2019 12:39:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1549802350119600" MIME-Version: 1.0 Date: Sun, 10 Feb 2019 12:39:10 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190210123910.DF44AFB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1549802350119600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Feb 10 12:39:10 UTC 2019 Modified Files: pkgsrc/games: Makefile Added Files: pkgsrc/games/libretro-2048: DESCR Makefile PLIST distinfo Log Message: games/libretro-2048: Import version libretro-2048-20181229 Libretro is a simple but powerful development interface that allows for the easy creation of emulators, games and multimedia applications that can plug straight into any libretro-compatible frontend. This development interface is open to others so that they can run these pluggable emulator and game cores also in their own programs or devices. 2048 is a puzzle game. To generate a diff of this commit: cvs rdiff -u -r1.422 -r1.423 pkgsrc/games/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/games/libretro-2048/DESCR \ pkgsrc/games/libretro-2048/Makefile pkgsrc/games/libretro-2048/PLIST \ pkgsrc/games/libretro-2048/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1549802350119600 Content-Disposition: inline Content-Length: 3440 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/Makefile diff -u pkgsrc/games/Makefile:1.422 pkgsrc/games/Makefile:1.423 --- pkgsrc/games/Makefile:1.422 Sun Dec 23 15:05:51 2018 +++ pkgsrc/games/Makefile Sun Feb 10 12:39:10 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.422 2018/12/23 15:05:51 nia Exp $ +# $NetBSD: Makefile,v 1.423 2019/02/10 12:39:10 nia Exp $ # COMMENT= Games @@ -226,6 +226,7 @@ SUBDIR+= libggz SUBDIR+= libkdegames SUBDIR+= libkmahjongg SUBDIR+= liblcf +SUBDIR+= libretro-2048 SUBDIR+= libretro-craft SUBDIR+= libretro-nxengine SUBDIR+= lincity Added files: Index: pkgsrc/games/libretro-2048/DESCR diff -u /dev/null pkgsrc/games/libretro-2048/DESCR:1.1 --- /dev/null Sun Feb 10 12:39:10 2019 +++ pkgsrc/games/libretro-2048/DESCR Sun Feb 10 12:39:10 2019 @@ -0,0 +1,7 @@ +Libretro is a simple but powerful development interface that allows for the +easy creation of emulators, games and multimedia applications that can plug +straight into any libretro-compatible frontend. This development interface is +open to others so that they can run these pluggable emulator and game cores +also in their own programs or devices. + +2048 is a puzzle game. Index: pkgsrc/games/libretro-2048/Makefile diff -u /dev/null pkgsrc/games/libretro-2048/Makefile:1.1 --- /dev/null Sun Feb 10 12:39:10 2019 +++ pkgsrc/games/libretro-2048/Makefile Sun Feb 10 12:39:10 2019 @@ -0,0 +1,36 @@ +# $NetBSD: Makefile,v 1.1 2019/02/10 12:39:10 nia Exp $ + +DISTNAME= libretro-2048-20181229 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_GITHUB:=libretro/} +GITHUB_PROJECT= libretro-2048 +GITHUB_TAG= bc05dc6e504e78fd4eaf7bf91f5b3f84a93c2962 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://docs.libretro.com/library/2048/ +COMMENT= Libretro core based on the 2048 puzzle game +LICENSE= unlicense + +EXTRACT_USING= bsdtar +USE_TOOLS+= gmake +MAKE_FILE= Makefile.libretro + +CHECK_PORTABILITY_SKIP+= pixman/configure + +MAKE_FLAGS+= GIT_VERSION="-pkgsrc" + +.include "../../mk/endian.mk" + +.if ${MACHINE_ENDIAN} == "big" +CFLAGS+= -DMSB_FIRST +.endif + +BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,--no-undefined + +INSTALLATION_DIRS+= ${PREFIX}/lib/libretro + +do-install: + ${INSTALL_LIB} ${WRKSRC}/2048_libretro.so \ + ${DESTDIR}${PREFIX}/lib/libretro/2048_libretro.so + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/games/libretro-2048/PLIST diff -u /dev/null pkgsrc/games/libretro-2048/PLIST:1.1 --- /dev/null Sun Feb 10 12:39:10 2019 +++ pkgsrc/games/libretro-2048/PLIST Sun Feb 10 12:39:10 2019 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2019/02/10 12:39:10 nia Exp $ +lib/libretro/2048_libretro.so Index: pkgsrc/games/libretro-2048/distinfo diff -u /dev/null pkgsrc/games/libretro-2048/distinfo:1.1 --- /dev/null Sun Feb 10 12:39:10 2019 +++ pkgsrc/games/libretro-2048/distinfo Sun Feb 10 12:39:10 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/02/10 12:39:10 nia Exp $ + +SHA1 (libretro-2048-20181229-bc05dc6e504e78fd4eaf7bf91f5b3f84a93c2962.tar.gz) = 5628715c81e097b772f27588845fa9238787bf57 +RMD160 (libretro-2048-20181229-bc05dc6e504e78fd4eaf7bf91f5b3f84a93c2962.tar.gz) = a72feb910c6668072652afa6ed8256bf8ac675cc +SHA512 (libretro-2048-20181229-bc05dc6e504e78fd4eaf7bf91f5b3f84a93c2962.tar.gz) = 54969a7a42827e7b7fd2ff82ed27caa0d47a59ca1ac800ea71fd949c05af98884b10f242b054064820800cab196f5fe7ffd570612cc6d79cbab1f43830dffcf6 +Size (libretro-2048-20181229-bc05dc6e504e78fd4eaf7bf91f5b3f84a93c2962.tar.gz) = 2694417 bytes --_----------=_1549802350119600--