svn commit: r323336 - head/multimedia/tvheadend

Bernhard Froehlich decke at FreeBSD.org
Sat Jul 20 07:33:10 UTC 2013


Author: decke
Date: Sat Jul 20 07:33:10 2013
New Revision: 323336
URL: http://svnweb.freebsd.org/changeset/ports/323336

Log:
  - Add support for FreeBSD 8.x
  
  Submitted by:	Juergen Lock <nox at FreeBSD.org>

Modified:
  head/multimedia/tvheadend/Makefile
  head/multimedia/tvheadend/pkg-message

Modified: head/multimedia/tvheadend/Makefile
==============================================================================
--- head/multimedia/tvheadend/Makefile	Sat Jul 20 07:25:24 2013	(r323335)
+++ head/multimedia/tvheadend/Makefile	Sat Jul 20 07:33:10 2013	(r323336)
@@ -3,6 +3,7 @@
 
 PORTNAME=	tvheadend
 PORTVERSION=	3.4.0.20130714.2
+PORTREVISION=	1
 CATEGORIES=	multimedia
 MASTER_SITES=	http://people.freebsd.org/~decke/distfiles/
 DISTFILES=	${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} dvb-scan-tables-20130714.tar.gz
@@ -40,7 +41,11 @@ CFLAGS+=	-Wno-conversion -Wno-int-to-poi
 .include <bsd.port.pre.mk>
 
 .if ${OSVERSION} < 900000
-BROKEN=		Does not compile on FreeBSD < 9.0
+.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" || ${ARCH} == "mips64"
+CFLAGS+=	-D__WORDSIZE=64
+.else
+CFLAGS+=	-D__WORDSIZE=32
+.endif
 .endif
 
 .if ( !empty(CC:M*clang*) || ${OSVERSION} >= 1000024 )

Modified: head/multimedia/tvheadend/pkg-message
==============================================================================
--- head/multimedia/tvheadend/pkg-message	Sat Jul 20 07:25:24 2013	(r323335)
+++ head/multimedia/tvheadend/pkg-message	Sat Jul 20 07:33:10 2013	(r323336)
@@ -9,7 +9,6 @@ Known issues:
 - no libav support
 - no libdvbcsa support
 - no rc.d script
-- does not compile on FreeBSD 8.x
 
 Patches, feedback and help are always welcome!
 


More information about the svn-ports-all mailing list