8573f2f448
- Define LICENSE (GPLv2) - Unmute installation commands - Reword COMMENT, sort knobs, etc. - Reformat port description
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
# Created by: David Yeske <dyeske@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= trommler
|
|
PORTVERSION= 3.8
|
|
PORTREVISION= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://muth.org/Robert/Trommler/
|
|
DISTNAME= ${PORTNAME}.${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK+2 based drum machine
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk20
|
|
|
|
WRKSRC= ${WRKDIR}/Trommler
|
|
|
|
post-patch:
|
|
# The third edit replaces the contents of a comment, so CC can be respected
|
|
@${REINPLACE_CMD} -e 's|-O9|${CFLAGS}| ; s|-Werror|| ; \
|
|
s|^# Makefile|CC=${CC}|' ${WRKSRC}/Makefile
|
|
|
|
@${REINPLACE_CMD} -e 's|"/Drums"|"${PREFIX}/share/trommler/Drums"|' \
|
|
${WRKSRC}/gui.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/playsample ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/trommler ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wav2smp ${PREFIX}/bin
|
|
@${MKDIR} ${PREFIX}/share/trommler/Drums
|
|
@${MKDIR} ${PREFIX}/share/trommler/Songs
|
|
${INSTALL_DATA} ${WRKSRC}/Drums/*.smp ${PREFIX}/share/trommler/Drums
|
|
${INSTALL_DATA} ${WRKSRC}/Songs/*.sng ${PREFIX}/share/trommler/Songs
|
|
|
|
.include <bsd.port.mk>
|