From owner-svn-ports-head@FreeBSD.ORG Fri Feb 15 15:13:51 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 33217571; Fri, 15 Feb 2013 15:13:51 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0D95B233; Fri, 15 Feb 2013 15:13:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1FFDoQ7092434; Fri, 15 Feb 2013 15:13:50 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1FFDomI092425; Fri, 15 Feb 2013 15:13:50 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201302151513.r1FFDomI092425@svn.freebsd.org> From: Emanuel Haupt Date: Fri, 15 Feb 2013 15:13:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312294 - in head/audio: . libxmp libxmp/files X-SVN-Group: ports-head 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.14 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, 15 Feb 2013 15:13:51 -0000 Author: ehaupt Date: Fri Feb 15 15:13:49 2013 New Revision: 312294 URL: http://svnweb.freebsd.org/changeset/ports/312294 Log: Add libxmp, a module rendering library for audio/xmp. Added: head/audio/libxmp/ head/audio/libxmp/Makefile (contents, props changed) head/audio/libxmp/distinfo (contents, props changed) head/audio/libxmp/files/ head/audio/libxmp/files/patch-Makefile.in (contents, props changed) head/audio/libxmp/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Fri Feb 15 15:08:34 2013 (r312293) +++ head/audio/Makefile Fri Feb 15 15:13:49 2013 (r312294) @@ -406,6 +406,7 @@ SUBDIR += libumidi SUBDIR += libvorbis SUBDIR += libworkman + SUBDIR += libxmp SUBDIR += lingot SUBDIR += linnya SUBDIR += linux-alsa-lib Added: head/audio/libxmp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libxmp/Makefile Fri Feb 15 15:13:49 2013 (r312294) @@ -0,0 +1,21 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= libxmp +PORTVERSION= 4.0.0 +CATEGORIES= audio +MASTER_SITES= SF/xmp/${PORTNAME}/${PORTVERSION} + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Module rendering library for xmp + +USE_GMAKE= yes +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +MAKE_JOBS_SAFE= yes + +PLIST_FILES= include/xmp.h lib/libxmp.so lib/libxmp.so.4 \ + lib/libxmp.so.${PORTVERSION} libdata/pkgconfig/libxmp.pc + +.include Added: head/audio/libxmp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libxmp/distinfo Fri Feb 15 15:13:49 2013 (r312294) @@ -0,0 +1,2 @@ +SHA256 (libxmp-4.0.0.tar.gz) = 18d4e1141df0367ed29c4f007cc47d92b311f785d52cf9eeb9423ce22152378d +SIZE (libxmp-4.0.0.tar.gz) = 1051276 Added: head/audio/libxmp/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libxmp/files/patch-Makefile.in Fri Feb 15 15:13:49 2013 (r312294) @@ -0,0 +1,13 @@ +--- ./Makefile.in.orig 2013-02-15 15:51:27.000000000 +0100 ++++ ./Makefile.in 2013-02-15 15:52:39.000000000 +0100 +@@ -144,8 +144,8 @@ + @echo "Installing xmp.h..." + @$(INSTALL) -m644 include/xmp.h $(DESTDIR)$(INCLUDEDIR) + @echo "Installing libxmp.pc..." +- @mkdir -p $(DESTDIR)$(LIBDIR)/pkgconfig +- @$(INSTALL) -m644 libxmp.pc $(DESTDIR)$(LIBDIR)/pkgconfig/ ++ @mkdir -p $(DESTDIR)$(PREFIX)/libdata/pkgconfig ++ @$(INSTALL) -m644 libxmp.pc $(DESTDIR)$(PREFIX)/libdata/pkgconfig/ + + depend: test/all_tests.c + @echo Building dependencies... Added: head/audio/libxmp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libxmp/pkg-descr Fri Feb 15 15:13:49 2013 (r312294) @@ -0,0 +1,5 @@ +Libxmp loads the module and renders the sound as linear PCM samples in a buffer +at rate and format specified by the user. Applications for libxmp include +players, module information extractors, module-to-mp3 renderers, etc. + +WWW: http://xmp.sourceforge.net/