From owner-svn-ports-head@freebsd.org Fri Dec 28 14:51:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 230BB143AE2A; Fri, 28 Dec 2018 14:51:25 +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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BBD948D5D9; Fri, 28 Dec 2018 14:51:24 +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 B052424684; Fri, 28 Dec 2018 14:51:24 +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 wBSEpOun098661; Fri, 28 Dec 2018 14:51:24 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBSEpO6e098657; Fri, 28 Dec 2018 14:51:24 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201812281451.wBSEpO6e098657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Fri, 28 Dec 2018 14:51:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r488602 - in head/audio: . hvl2wav X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/audio: . hvl2wav X-SVN-Commit-Revision: 488602 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BBD948D5D9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 28 Dec 2018 14:51:25 -0000 Author: ehaupt Date: Fri Dec 28 14:51:23 2018 New Revision: 488602 URL: https://svnweb.freebsd.org/changeset/ports/488602 Log: Add hvl2wav g20180905, tool for converting AHX sound modules to WAV. Added: head/audio/hvl2wav/ head/audio/hvl2wav/Makefile (contents, props changed) head/audio/hvl2wav/distinfo (contents, props changed) head/audio/hvl2wav/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Fri Dec 28 14:06:04 2018 (r488601) +++ head/audio/Makefile Fri Dec 28 14:51:23 2018 (r488602) @@ -334,6 +334,7 @@ SUBDIR += hs-OpenAL SUBDIR += hs-libmpd SUBDIR += hts_engine-API + SUBDIR += hvl2wav SUBDIR += hydrogen SUBDIR += icecast SUBDIR += icecast-kh Added: head/audio/hvl2wav/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/hvl2wav/Makefile Fri Dec 28 14:51:23 2018 (r488602) @@ -0,0 +1,40 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= hvl2wav +DISTVERSION= g20180905 +CATEGORIES= audio + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Tool for converting AHX sound modules to WAV + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= pete-gordon +GH_PROJECT= hivelytracker +GH_TAGNAME= 8296a50 + +OPTIONS_DEFINE= EXAMPLES + +LDFLAGS+= -lm + +PLIST_FILES= bin/hvl2wav man/man1/hvl2wav.1.gz +PORTEXAMPLES= * + +do-build: + ${CC} ${CFLAGS} ${LDFLAGS} ${WRKSRC}/${PORTNAME}/*.c \ + -o ${WRKSRC}/${PORTNAME}/${PORTNAME} + +do-install: + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}/${PORTNAME}.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}/${PORTNAME} \ + ${STAGEDIR}${PREFIX}/bin + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/Songs/* ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/audio/hvl2wav/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/hvl2wav/distinfo Fri Dec 28 14:51:23 2018 (r488602) @@ -0,0 +1,3 @@ +TIMESTAMP = 1546006883 +SHA256 (pete-gordon-hivelytracker-g20180905-8296a50_GH0.tar.gz) = 129335104a0c4ea07a026d0da942221351c1007aaead0203b5ef108a8d8e0613 +SIZE (pete-gordon-hivelytracker-g20180905-8296a50_GH0.tar.gz) = 5818746 Added: head/audio/hvl2wav/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/hvl2wav/pkg-descr Fri Dec 28 14:51:23 2018 (r488602) @@ -0,0 +1,3 @@ +Tool for converting Abyss' Highest eXperience (.AHX) sound modules to WAV. + +WWW: https://github.com/pete-gordon/hivelytracker