svn commit: r312294 - in head/audio: . libxmp libxmp/files
Emanuel Haupt
ehaupt at FreeBSD.org
Fri Feb 15 15:13:51 UTC 2013
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 <ehaupt at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= libxmp
+PORTVERSION= 4.0.0
+CATEGORIES= audio
+MASTER_SITES= SF/xmp/${PORTNAME}/${PORTVERSION}
+
+MAINTAINER= ehaupt at 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 <bsd.port.mk>
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/
More information about the svn-ports-head
mailing list