87e080d1d9
- Add LICENSE_FILE - Convert USE_SDL=yes to USE_SDL=sdl - Switch to options helpers - Remove leftover noop SDL(12) hack - Convert INSTALL+STRIP to more correct INSTALL_PROGRAM Approved by: portmgr blanket
32 lines
678 B
Makefile
32 lines
678 B
Makefile
# Created by: Emanuel Haupt <ehaupt@critical.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sidplayer
|
|
PORTVERSION= 4.4
|
|
PORTREVISION= 9
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://sidplayer.cebix.net/downloads/ \
|
|
LOCAL/ehaupt
|
|
DISTNAME= SIDPlayer-${PORTVERSION}
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= C64 SID tune player
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USE_SDL= sdl
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_SUB= yes
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/PSID\ Demo/* ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|