freebsd-ports/audio/milkytracker/Makefile
Dmitry Marakasov 6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00

50 lines
1.1 KiB
Makefile

# New ports collection makefile for: milkytracker
# Date created: 13 Mar 2008
# Whom: Emanuel Haupt <ehaupt@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= milkytracker
PORTVERSION= 0.90.85
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://www.milkytracker.org/files/ \
CRITICAL/${PORTNAME}/${PORTVERSION}/${PORTREVISION}
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= A free music creation tool inspired by Fast Tracker 2
LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack \
zzip.13:${PORTSDIR}/devel/zziplib
GNU_CONFIGURE= yes
USE_SDL= sdl
MAKE_JOBS_SAFE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS+= --disable-alsatest --without-alsa
LICENSE= GPLv3
PLIST_FILES= bin/milkytracker share/pixmaps/milkytracker.ico \
share/pixmaps/milkytracker.png
PORTDOCS= FAQ.html MilkyTracker.html ChangeLog.html
ICONS= carton.ico carton.png
post-install:
.for f in ${ICONS}
${INSTALL_DATA} ${WRKSRC}/resources/pictures/${f} \
${LOCALBASE}/share/pixmaps/${f:C/carton/milkytracker/}
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>