summaryrefslogtreecommitdiff
path: root/graphics/babl/Makefile
diff options
context:
space:
mode:
authoradam <adam>2011-02-10 07:41:25 +0000
committeradam <adam>2011-02-10 07:41:25 +0000
commit1dcd1c462019540a5e349171f40dabfd949f61e6 (patch)
treeddc2084cbfc8212dd6d89e7399252373df038bb4 /graphics/babl/Makefile
parenta3c10fdb2da9570a85204e96470ae95fc8e5a3cf (diff)
downloadpkgsrc-1dcd1c462019540a5e349171f40dabfd949f61e6.tar.gz
Chamges 0.1.4:
Improved cross platform build ability, added code to handle n-component formats, remove extraenous runtime profiling that impacted performance.
Diffstat (limited to 'graphics/babl/Makefile')
-rw-r--r--graphics/babl/Makefile18
1 files changed, 12 insertions, 6 deletions
diff --git a/graphics/babl/Makefile b/graphics/babl/Makefile
index 7d5221d687f..c1c02e73d9d 100644
--- a/graphics/babl/Makefile
+++ b/graphics/babl/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2010/02/05 11:42:37 drochner Exp $
+# $NetBSD: Makefile,v 1.8 2011/02/10 07:41:25 adam Exp $
-DISTNAME= babl-0.1.2
+DISTNAME= babl-0.1.4
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.gimp.org/pub/babl/0.1/ \
http://ftp.gwdg.de/pub/misc/grafik/gimp/babl/0.1/
@@ -9,10 +9,10 @@ EXTRACT_SUFX= .tar.bz2
MAINTAINER= bjs@NetBSD.org
HOMEPAGE= http://gegl.org/babl/
COMMENT= Dynamic pixel conversion library
-###
-### NOTE: to build documentation--which requires additional dependencies--
-### define BUILD_DOCS in MAKE_ENV.
-###
+LICENSE= gnu-gpl-v3
+
+# NOTE: to build documentation (which requires additional dependencies)
+# define BUILD_DOCS in MAKE_ENV.
PKG_DESTDIR_SUPPORT= user-destdir
USE_LIBTOOL= yes
@@ -21,5 +21,11 @@ GNU_CONFIGURE= yes
PKGCONFIG_OVERRIDE+= babl.pc.in
+# XXX Clang does not handle assembler, yet
+.include "../../mk/compiler.mk"
+.if !empty(PKGSRC_COMPILER:Mclang)
+CONFIGURE_ARGS+= --disable-sse
+.endif
+
.include "../../mk/dlopen.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"