summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2012-04-11 21:22:00 +0000
committerwiz <wiz@pkgsrc.org>2012-04-11 21:22:00 +0000
commitd940e0cc9bf70167c1e6b6529963ebaac16ecb05 (patch)
treeb45c78c8cc56b62004ca13c1130e08938cb51182
parent8137b2a9c979dfac8833602d3f87cd12104c6ec9 (diff)
downloadpkgsrc-d940e0cc9bf70167c1e6b6529963ebaac16ecb05.tar.gz
Fix a sed statement to install an additional file. Bump PKGREVISION.
From Kai-Uwe Eckhardt in private mail.
-rw-r--r--math/cloog/Makefile4
-rw-r--r--math/cloog/PLIST3
-rw-r--r--math/cloog/distinfo3
-rw-r--r--math/cloog/patches/patch-isl_Makefile.in15
4 files changed, 21 insertions, 4 deletions
diff --git a/math/cloog/Makefile b/math/cloog/Makefile
index a32e9b56d81..3b7837e49dc 100644
--- a/math/cloog/Makefile
+++ b/math/cloog/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.1.1.1 2012/04/08 20:47:52 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2012/04/11 21:22:00 wiz Exp $
#
DISTNAME= cloog-0.16.2
+PKGREVISION= 1
CATEGORIES= math
MASTER_SITES= ftp://gcc.gnu.org/pub/gcc/infrastructure/
@@ -13,7 +14,6 @@ LICENSE= gnu-lgpl-v2.1
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
-#USE_LANGUAGES= c fortran
USE_LANGUAGES= c
USE_LIBTOOL= yes
diff --git a/math/cloog/PLIST b/math/cloog/PLIST
index 9449881194a..17896bd4a02 100644
--- a/math/cloog/PLIST
+++ b/math/cloog/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2012/04/08 20:47:52 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2012/04/11 21:22:00 wiz Exp $
bin/cloog
include/cloog/block.h
include/cloog/clast.h
@@ -54,5 +54,6 @@ include/isl/version.h
include/isl/vertices.h
lib/libcloog-isl.la
lib/libisl.la
+lib/libisl.so.6.0.0-gdb.py
lib/pkgconfig/cloog-isl.pc
lib/pkgconfig/isl.pc
diff --git a/math/cloog/distinfo b/math/cloog/distinfo
index 6ed72bb0628..f4eb598c086 100644
--- a/math/cloog/distinfo
+++ b/math/cloog/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2012/04/08 20:47:52 wiz Exp $
+$NetBSD: distinfo,v 1.2 2012/04/11 21:22:00 wiz Exp $
SHA1 (cloog-0.16.2.tar.gz) = 3bdccfe24e5bd5850cbd28eec70c6aeaa94747ab
RMD160 (cloog-0.16.2.tar.gz) = 2b915298832aa7cbd584a4f6f4991b2d931b773e
Size (cloog-0.16.2.tar.gz) = 1850841 bytes
+SHA1 (patch-isl_Makefile.in) = af18659c4f7d0b7765f905e79ad08cb9858d0d1f
diff --git a/math/cloog/patches/patch-isl_Makefile.in b/math/cloog/patches/patch-isl_Makefile.in
new file mode 100644
index 00000000000..0ad4ea8c46a
--- /dev/null
+++ b/math/cloog/patches/patch-isl_Makefile.in
@@ -0,0 +1,15 @@
+$NetBSD: patch-isl_Makefile.in,v 1.1 2012/04/11 21:22:00 wiz Exp $
+
+Fix sed macro for libisl.so.6.0.0-gdb.py
+
+--- isl/Makefile.in.orig 2012-04-10 14:27:41.003215698 +0000
++++ isl/Makefile.in
+@@ -1955,7 +1955,7 @@ gitversion.h: @GIT_HEAD@
+ echo '#define GIT_HEAD_ID "'@GIT_HEAD_VERSION@'"' > $@
+
+ install-data-local: $(srcdir)/isl.py
+- @libisl=`sed -ne "/^library_names=/{s/.*='//;s/'$$//;s/ .*//;p}" \
++ @libisl=`sed -ne "/^library_names=/{s/.*='//;s/'$$//;s/ .*//p;}" \
+ $(builddir)/libisl.la`; \
+ case $$libisl in \
+ '') echo Cannot find isl library name. GDB bindings not installed.;; \