1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00
freebsd-ports/audio/xmms-timidity/Makefile
Tijl Coosemans 2ffbea1568 Convert multimedia/xmms to USES=libtool. Bump PORTREVISION on all
dependent ports and convert them to USES=libtool too.

audio/scrobbler:
- USES=tar:bzip2.
- Don't link with libstdc++.

audio/xmms-bonk:
- Don't link with libstdc++.

audio/xmms-flac:
- Remove unneeded dependencies.
- Remove $FreeBSD$ from patches.

audio/xmms-scrobbler:
- Use OPTIONS_SLAVE.

audio/xmms-timidity:
- USES=tar:bzip2.
- Install the library instead of the source code file.

audio/xmms-volnorm:
- Remove do-install.
2014-05-04 18:48:54 +00:00

35 lines
890 B
Makefile

# Created by: Timothy Beyer <beyert@cs.ucr.edu>
# $FreeBSD$
PORTNAME= xmms-timidity
PORTVERSION= 0.0.3
PORTREVISION= 2
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= libxmms.so:${PORTSDIR}/multimedia/xmms
RUN_DEPENDS= timidity:${PORTSDIR}/audio/timidity
USE_LDCONFIG= ${PREFIX}/lib/xmms/Input
USES= tar:bzip2
USE_GNOME= gtk12
CXXFLAGS+= -I${LOCALBASE}/include `glib-config --cflags` -g -fPIC
FILES= xmms-timidity.cpp
PLIST_FILES= lib/xmms/Input/libxmms-timidity.so
do-build:
cd ${WRKSRC} && ${CXX} ${CXXFLAGS} ${FILES} -o libxmms-timidity.so \
-shared -pthread
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Input
${INSTALL_DATA} ${WRKSRC}/libxmms-timidity.so \
${STAGEDIR}${PREFIX}/lib/xmms/Input/libxmms-timidity.so
.include <bsd.port.mk>