0438143249
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209
33 lines
731 B
Makefile
33 lines
731 B
Makefile
# Created by: Emanuel Haupt <ehaupt@critical.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= schism
|
|
PORTVERSION= 20100101
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://schismtracker.org/dl/ \
|
|
LOCAL/ehaupt
|
|
DISTNAME= schismtracker-${PORTVERSION}
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Module tracker editor/player resembling impulse tracker
|
|
|
|
LICENSE= GPLv2
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
USES= tar:bzip2
|
|
USE_SDL= 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.mk>
|