mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
e86b55727a
and perform other minor cleanups along the way, whenever noticed.
35 lines
739 B
Makefile
35 lines
739 B
Makefile
# Created by: Brett Taylor <brett@peloton.physics.montana.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= splaytk
|
|
PORTVERSION= 2.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SUNSITE/apps/sound/players
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tk based interface for splay
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= splay:${PORTSDIR}/audio/splay
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/splay-tk-${PORTVERSION}
|
|
|
|
USE_TK_WRAPPER= yes
|
|
|
|
DATADIR= ${PREFIX}/share/splay-tk
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|%%DATADIR%%|${DATADIR}|g' ${WRKSRC}/splay-tk.tcl
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/splay-tk.tcl ${PREFIX}/bin/splay-tk
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.xbm ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/splay-tk.gif ${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|