freebsd-ports/multimedia/oscam/Makefile
Mark Linimon feee6ce9d6 Prepare for powerpc-on-clang by deleting hard-coded tests for architecture
as a stand-in for "are we running on gcc".

Approved by:	portmgr (tier-2 blanket)
2019-07-13 00:07:35 +00:00

52 lines
1.4 KiB
Makefile

# Created by: Franz Bettag <franz@bett.ag>
# $FreeBSD$
PORTNAME= oscam
PORTVERSION= 1.20
PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= http://el8.nl/~fbettag/oscam/
MAINTAINER= franz@bett.ag
COMMENT= Softcam software to decrypt digital tv channels
LICENSE= GPLv3
USES= compiler gmake ssl tar:bzip2
USE_RC_SUBR= oscam
.if target(gen-dist)
FETCH_DEPENDS+= svn:devel/subversion
.endif
SVN_REV= 11062
SVN_SRC= http://www.streamboard.tv/svn/oscam/trunk
OPTIONS_DEFINE= EXAMPLES
.include <bsd.port.pre.mk>
.if ${SSL_DEFAULT} == base
BROKEN_FreeBSD_12= field has incomplete type 'BIGNUM' (aka 'struct bignum_st')
BROKEN_FreeBSD_13= field has incomplete type 'BIGNUM' (aka 'struct bignum_st')
.endif
.if ${CHOSEN_COMPILER_TYPE} == clang
MAKE_ARGS+= HOSTCC=clang CC=clang
.endif
do-install:
${RM} ${WRKSRC}/Distribution/*.debug
${INSTALL_PROGRAM} ${WRKSRC}/Distribution/${PORTNAME}-${PORTVERSION}-* ${STAGEDIR}${PREFIX}/bin/oscam
${INSTALL_MAN} ${WRKSRC}/Distribution/doc/man/*.1 ${STAGEDIR}${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKSRC}/Distribution/doc/man/*.5 ${STAGEDIR}${PREFIX}/man/man5/
do-install-EXAMPLES-on:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
${INSTALL_DATA} ${WRKSRC}/Distribution/doc/example/* ${STAGEDIR}${EXAMPLESDIR}/
gen-dist:
${MKDIR} ${WRKDIR}
svn export --force -r ${SVN_REV} ${SVN_SRC} ${WRKSRC}
${TAR} -cvy -C ${WRKDIR} -f ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME}
.include <bsd.port.post.mk>