From owner-svn-ports-head@freebsd.org Sat Feb 27 14:01:28 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 22F1D567471; Sat, 27 Feb 2021 14:01:28 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dnp940VZrz4t1Q; Sat, 27 Feb 2021 14:01:28 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE75B1F10B; Sat, 27 Feb 2021 14:01:27 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11RE1R9b074171; Sat, 27 Feb 2021 14:01:27 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11RE1R2t074167; Sat, 27 Feb 2021 14:01:27 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <202102271401.11RE1R2t074167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sat, 27 Feb 2021 14:01:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566702 - in head/audio: . ft2play X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/audio: . ft2play X-SVN-Commit-Revision: 566702 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Feb 2021 14:01:28 -0000 Author: ehaupt Date: Sat Feb 27 14:01:26 2021 New Revision: 566702 URL: https://svnweb.freebsd.org/changeset/ports/566702 Log: Add ft2play g20210124, bit-accurate C port of Fasttracker's XM replayer. Added: head/audio/ft2play/ head/audio/ft2play/Makefile (contents, props changed) head/audio/ft2play/distinfo (contents, props changed) head/audio/ft2play/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sat Feb 27 13:49:33 2021 (r566701) +++ head/audio/Makefile Sat Feb 27 14:01:26 2021 (r566702) @@ -204,6 +204,7 @@ SUBDIR += freealut SUBDIR += freedesktop-sound-theme SUBDIR += freepats + SUBDIR += ft2play SUBDIR += funktrackergold SUBDIR += ganv SUBDIR += gbemol Added: head/audio/ft2play/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/ft2play/Makefile Sat Feb 27 14:01:26 2021 (r566702) @@ -0,0 +1,34 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= ft2play +DISTVERSION= g20210124 +CATEGORIES= audio + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Bit-accurate C port of Fasttracker's XM replayer + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= sdl +USE_GITHUB= yes +GH_ACCOUNT= 8bitbubsy +GH_TAGNAME= 5730b16 +USE_SDL= sdl2 + +CFLAGS+= -DAUDIODRIVER_SDL -DNDEBUG `sdl2-config --cflags` +LDFLAGS+= -lm -lpthread `sdl2-config --libs` + +PLIST_FILES= bin/ft2play + +do-build: + ${CC} ${CFLAGS} ${LDFLAGS} ${WRKSRC}/audiodrivers/sdl/*.c \ + ${WRKSRC}/*.c ${WRKSRC}/ft2play/src/*.c \ + -o ${WRKSRC}/ft2play/release/other/ft2play + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ft2play/release/other/ft2play \ + ${STAGEDIR}${PREFIX}/bin + +.include Added: head/audio/ft2play/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/ft2play/distinfo Sat Feb 27 14:01:26 2021 (r566702) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614426519 +SHA256 (8bitbubsy-ft2play-g20210124-5730b16_GH0.tar.gz) = ff6d4c8346e05037fcc5d6eac2613afa5dec1aa51bc3eabb81b8af22a648c9a1 +SIZE (8bitbubsy-ft2play-g20210124-5730b16_GH0.tar.gz) = 49574 Added: head/audio/ft2play/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/ft2play/pkg-descr Sat Feb 27 14:01:26 2021 (r566702) @@ -0,0 +1,4 @@ +Bit-accurate C port of Fasttracker's XM replayer (SB16/WAV render mode). +It is a direct port of the original asm/Pascal source codes. + +WWW: https://github.com/8bitbubsy/ft2play