xmms-timidity is another simple plugin that handles .mid files by running the

locally installed copy of Timidity, and piping the output back to XMMS.

- Timothy Beyer <beyert@cs.ucr.edu>

PR:		ports/131442
Submitted by:	Timothy Beyer <beyert at cs.ucr.edu>
This commit is contained in:
Philip M. Gollucci 2009-06-12 02:12:14 +00:00
parent c8497ae76f
commit cccfcc68f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=235616
4 changed files with 39 additions and 0 deletions

View file

@ -829,6 +829,7 @@
SUBDIR += xmms-sndstretch
SUBDIR += xmms-speex
SUBDIR += xmms-tfmx
SUBDIR += xmms-timidity
SUBDIR += xmms-uade
SUBDIR += xmms-volnorm
SUBDIR += xmms-wavpack

View file

@ -0,0 +1,31 @@
# New ports collection makefile for: xmms-timidity
# Date created: 2009-01-05
# Whom: Timothy Beyer <beyert@cs.ucr.edu>
#
# $FreeBSD$
PORTNAME= xmms-timidity
PORTVERSION= 0.0.3
CATEGORIES= audio
MASTER_SITES= http://www.shikadi.net/utils/files/
MAINTAINER= beyert@cs.ucr.edu
COMMENT= XMMS input plugin to play midi files (via timidity)
LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms
RUN_DEPENDS= timidity:${PORTSDIR}/audio/timidity
USE_LDCONFIG= ${PREFIX}/lib/xmms/Input
USE_GCC= 3.4
USE_BZIP2= yes
USE_GNOME= gtk12
CFLAGS+= `glib-config --cflags` -g -fPIC
FILES= xmms-timidity.cpp
PLIST_FILES= lib/xmms/Input/libxmms-timidity.so
do-build:
(cd ${WRKSRC} && ${CXX} ${CFLAGS} -c ${FILES} -o xmms-timidity.o)
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (xmms-timidity-0.0.3.tar.bz2) = 90889dae2c512a0933e19e0c0a7b38fc
SHA256 (xmms-timidity-0.0.3.tar.bz2) = c0d37250beb9874a4fde3f0cecb543eeb6ce9ac319119315bf23a9f1b4344b19
SIZE (xmms-timidity-0.0.3.tar.bz2) = 47755

View file

@ -0,0 +1,4 @@
xmms-timidity is another simple plugin that handles .mid files by running the
locally installed copy of Timidity, and piping the output back to XMMS.
- Timothy Beyer <beyert@cs.ucr.edu>