mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
7f4572eae4
With hat: portmgr Sponsored by: Absolight
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
# Created by: Michael Vasilenko <acid@stu.cn.ua>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mp3blaster
|
|
PORTVERSION= 3.2.5
|
|
PORTREVISION= 5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= MP3 console ncurses-based player
|
|
|
|
USES= gmake ncurses
|
|
GNU_CONFIGURE= yes
|
|
WANT_GNOME= yes
|
|
CONFIGURE_ARGS= --with-cxxflags="${CXXFLAGS}"
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -DHAVE_DECL_GETOPT
|
|
LDFLAGS+= -lpthread -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= LIRC NAS SIDPLAY VORBIS DOCS ESOUND
|
|
OPTIONS_DEFAULT= SIDPLAY VORBIS
|
|
SIDPLAY_DESC= Sidplayer support
|
|
|
|
PORTDOCS= AUTHORS CREDITS ChangeLog FAQ README TODO
|
|
|
|
LIRC_LIB_DEPENDS= liblirc_client.so:comms/lirc
|
|
LIRC_CONFIGURE_WITH= lirc
|
|
|
|
SIDPLAY_LIB_DEPENDS= libsidplay.so:audio/libsidplay
|
|
SIDPLAY_CONFIGURE_WITH= sidplay
|
|
|
|
VORBIS_LIB_DEPENDS= libvorbisfile.so:audio/libvorbis
|
|
VORBIS_CONFIGURE_WITH= oggvorbis
|
|
|
|
SDL_CONFIGURE_WITH= sdl
|
|
SDL_USE= SDL=yes
|
|
|
|
NAS_CONFIGURE_WITH= nas
|
|
NAS_LIB_DEPENDS= libaudio.so:audio/nas
|
|
NAS_LDFLAGS= -laudio
|
|
|
|
ESOUND_CONFIGURE_WITH= esd
|
|
ESOUND_GNOME= esound
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local/share/mp3blaster/win2koi.tbl|${DATADIR}/charmap/win2koi.tbl|' \
|
|
${WRKSRC}/doc/sample.mp3blasterrc
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|