svn commit: r336891 - head/graphics/squish

Pawel Pekala pawel at FreeBSD.org
Thu Dec 19 12:22:41 UTC 2013


Author: pawel
Date: Thu Dec 19 12:22:41 2013
New Revision: 336891
URL: http://svnweb.freebsd.org/changeset/ports/336891

Log:
  - Fix build with clang [1]
  - Update maintainer email [1]
  - Use option helpers
  
  PR:		ports/184683 [1]
  Submitted by:	maintainer

Modified:
  head/graphics/squish/Makefile   (contents, props changed)

Modified: head/graphics/squish/Makefile
==============================================================================
--- head/graphics/squish/Makefile	Thu Dec 19 12:07:44 2013	(r336890)
+++ head/graphics/squish/Makefile	Thu Dec 19 12:22:41 2013	(r336891)
@@ -1,4 +1,4 @@
-# Created by: Reinier de Blois <me at rdb.name>
+# Created by: Reinier de Blois <rddeblois at gmail.com>
 # $FreeBSD$
 
 PORTNAME=	squish
@@ -6,7 +6,7 @@ PORTVERSION=	1.10
 CATEGORIES=	graphics
 MASTER_SITES=	http://libsquish.googlecode.com/files/
 
-MAINTAINER=	me at rdb.name
+MAINTAINER=	rddeblois at gmail.com
 COMMENT=	Open source DXT compression library
 
 LICENSE=	MIT
@@ -15,21 +15,14 @@ USES=		gmake
 MAKE_ENV=	INSTALL_DIR=${STAGEDIR}${PREFIX}
 PLIST_FILES=	include/squish.h \
 		lib/libsquish.a
-CXXFLAGS+=	-fPIC
+CXXFLAGS+=	-fPIC -include limits.h
 
 OPTIONS_RADIO=	RG1
 OPTIONS_RADIO_RG1=	ALTIVEC SSE
 ALTIVEC_DESC=	Use Altivec instructions
 RG1_DESC=	Optimizations Selection
 
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MALTIVEC}
-CXXFLAGS+=	-DSQUISH_USE_ALTIVEC=1 -maltivec
-.endif
-
-.if ${PORT_OPTIONS:MSSE}
-CXXFLAGS+=	-DSQUISH_USE_SSE=2 -msse
-.endif
+ALTIVEC_CXXFLAGS=	-DSQUISH_USE_ALTIVEC=1 -maltivec
+SSE_CXXFLAGS=		-DSQUISH_USE_SSE=2 -msse
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list