blob: c2f527953e2618f421b419f65c67dee53af064c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Created by: Emanuel Haupt <ehaupt@critical.ch>
# $FreeBSD$
PORTNAME= schism
PORTVERSION= 20100101
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://schismtracker.org/dl/ \
CRITICAL
DISTNAME= schismtracker-${PORTVERSION}
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Module tracker editor/player resembling impulse tracker
LICENSE= GPLv2
ONLY_FOR_ARCHS= i386 amd64
USE_SDL= yes
USE_BZIP2= yes
GNU_CONFIGURE= yes
PLIST_FILES= bin/${PORTNAME}
WRKSRC= ${WRKDIR}/${DISTNAME}
# releases up to version 20120105 either segfault or don't run
PORTSCOUT= skipv:20100202,20101127,20101128,20110101,20120105
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/schismtracker ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.pre.mk>
# after merging log2 and log2f into libm
.if ${OSVERSION} >= 802502
EXTRA_PATCHES= ${FILESDIR}/extrapatch-modplug__snd_gm.c
.endif
.include <bsd.port.post.mk>
|