1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/audio/optimfrog/Makefile
Matthew Rezny 46060e3ac3 Pass PREFIX to the install script in case it's not /usr/local
PR:		216834
Submitted by:	mi
Approved by:	swills (mentor)
Differential Revision:	https://reviews.freebsd.org/D9800
2017-02-25 14:50:28 +00:00

49 lines
1.2 KiB
Makefile

# $FreeBSD$
PORTNAME= optimfrog
PORTVERSION= 5.100
CATEGORIES= audio
MASTER_SITES= http://losslessaudio.org/Downloads/A1C0/${DISTVERSION:S/.//}/FreeBSD/
DISTNAME= # OptimFROG_FreeBSD_${ARCH}_${DISTVERSION:S/.//}
MAINTAINER= rezny@FreeBSD.org
COMMENT?= Best-ratio lossless audio codec
LICENSE= OptimFROG
LICENSE_NAME= OptimFROG - License
LICENSE_FILE= ${WRKSRC}/license.html #only available as html
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
RUN_DEPENDS+= ${LOCALBASE}/lib/compat/libstdc++.so.6:misc/compat9x
CONFLICTS_INSTALL?= optimfrog-sse2-[0-9]*
ONLY_FOR_ARCHS?= amd64 i386
USES= tar:txz
NO_CDROM= No fees may be collected for redistribution
NO_BUILD= yes
USE_LDCONFIG= yes
OPTIONS_DEFINE_i386= SSE2
OPTIONS_DEFINE?= #
SSE2_DESCR= Use SSE2 instructions instead of x87 FPU
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64"
DISTNAME= OptimFROG_FreeBSD_x64_${DISTVERSION:S/.//}
.else # ${ARCH} == "i386"
. if ${PORT_OPTIONS:MSSE2}
DISTNAME= OptimFROG_FreeBSD_x86_SSE2_${DISTVERSION:S/.//}
. else
DISTNAME= OptimFROG_FreeBSD_x86_${DISTVERSION:S/.//}
. endif
.endif
do-install:
@(cd ${WRKSRC} && ./install.sh -d "${STAGEDIR}" -p "${PREFIX}")
.include <bsd.port.post.mk>