49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# Created by: Emanuel Haupt <ehaupt@critical.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= schismtracker
|
|
PORTVERSION= 20190805
|
|
CATEGORIES= audio
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Module tracker editor/player resembling impulse tracker
|
|
|
|
LICENSE= GPLv2
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
USES= autoreconf python compiler:c++11-lib desktop-file-utils sdl xorg
|
|
USE_SDL= sdl
|
|
USE_XORG= x11 xext xv
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
# if you touch these make sure configure finds X11/XKBlib.h presence
|
|
LDFLAGS+= `sdl-config --libs`
|
|
LIBS+= -lm -lX11
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
PLIST_FILES= bin/schismtracker man/man1/schismtracker.1.gz \
|
|
share/applications/schism.desktop \
|
|
share/pixmaps/schism-icon-128.png \
|
|
share/pixmaps/schism-itf-icon-128.png
|
|
|
|
# changes only affect macOS
|
|
PORTSCOUT= ignore:20190614
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e "s|^\(AC_INIT.*\)\[last_git_commit\]|\1${PORTVERSION}|" \
|
|
-e '/^m4_define.*last_git_commit.*git/d' \
|
|
${WRKSRC}/configure.ac
|
|
@${REINPLACE_CMD} -e '/^schismtracker_LDADD/d' ${WRKSRC}/Makefile.am
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/sys/fd.org/*.desktop ${STAGEDIR}${DESKTOPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/icons/schism-icon-128.png \
|
|
${WRKSRC}/icons/schism-itf-icon-128.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps
|
|
|
|
.include <bsd.port.mk>
|