summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-02-17 13:39:05 -0600
committerTodd Gamblin <tgamblin@llnl.gov>2017-02-17 11:39:05 -0800
commit4f6001112199524910e7754e13564e7f5d107d05 (patch)
tree4ed862a60cb715a2ea6323839fdf2e26b8b13ded /var
parent163bdfde93a9cbbdc3b5415d0a79cb0f57dc0ebb (diff)
downloadspack-4f6001112199524910e7754e13564e7f5d107d05.tar.gz
spack-4f6001112199524910e7754e13564e7f5d107d05.tar.bz2
spack-4f6001112199524910e7754e13564e7f5d107d05.tar.xz
spack-4f6001112199524910e7754e13564e7f5d107d05.zip
Add patch to allow ncurses to be built with PGI (#3135)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/ncurses/package.py41
-rw-r--r--var/spack/repos/builtin/packages/ncurses/sed_pgi.patch11
2 files changed, 30 insertions, 22 deletions
diff --git a/var/spack/repos/builtin/packages/ncurses/package.py b/var/spack/repos/builtin/packages/ncurses/package.py
index e4fd5bf269..79b5e88ceb 100644
--- a/var/spack/repos/builtin/packages/ncurses/package.py
+++ b/var/spack/repos/builtin/packages/ncurses/package.py
@@ -25,14 +25,12 @@
from spack import *
-class Ncurses(Package):
+class Ncurses(AutotoolsPackage):
"""The ncurses (new curses) library is a free software emulation of
- curses in System V Release 4.0, and more. It uses terminfo format,
- supports pads and color and multiple highlights and forms
- characters and function-key mapping, and has all the other
- SYSV-curses enhancements over BSD curses.
-
- """
+ curses in System V Release 4.0, and more. It uses terminfo format,
+ supports pads and color and multiple highlights and forms
+ characters and function-key mapping, and has all the other
+ SYSV-curses enhancements over BSD curses."""
homepage = "http://invisible-island.net/ncurses/ncurses.html"
url = "http://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz"
@@ -40,20 +38,19 @@ class Ncurses(Package):
version('6.0', 'ee13d052e1ead260d7c28071f46eefb1')
version('5.9', '8cb9c412e5f2d96bc6f459aa8c6282a1')
- patch('patch_gcc_5.txt', when='%gcc@5.0:')
+ patch('patch_gcc_5.txt', when='@6.0%gcc@5.0:')
+ patch('sed_pgi.patch', when='@:6.0')
- def install(self, spec, prefix):
- opts = [
- "--prefix=%s" % prefix,
- "--with-shared",
- "--with-cxx-shared",
- "--enable-widec",
- "--enable-overwrite",
- "--disable-lib-suffixes",
- "--without-ada",
- "--enable-pc-files",
- "--with-pkg-config-libdir={0}/lib/pkgconfig".format(prefix)
+ def configure_args(self):
+ return [
+ 'CFLAGS={0}'.format(self.compiler.pic_flag),
+ 'CXXFLAGS={0}'.format(self.compiler.pic_flag),
+ '--with-shared',
+ '--with-cxx-shared',
+ '--enable-widec',
+ '--enable-overwrite',
+ '--disable-lib-suffixes',
+ '--without-ada',
+ '--enable-pc-files',
+ '--with-pkg-config-libdir={0}/lib/pkgconfig'.format(self.prefix)
]
- configure(*opts)
- make()
- make("install")
diff --git a/var/spack/repos/builtin/packages/ncurses/sed_pgi.patch b/var/spack/repos/builtin/packages/ncurses/sed_pgi.patch
new file mode 100644
index 0000000000..f51b96c521
--- /dev/null
+++ b/var/spack/repos/builtin/packages/ncurses/sed_pgi.patch
@@ -0,0 +1,11 @@
+--- a/ncurses/tty/MKexpanded.sh 2017-02-12 09:09:33.828954282 -0600
++++ b/ncurses/tty/MKexpanded.sh 2017-02-12 09:11:03.430673306 -0600
+@@ -125,7 +125,7 @@
+ EOF
+
+ $preprocessor $TMP 2>/dev/null | \
+- sed -e '1,/^IGNORE$/d' -e 's/^@/#/' -e 's/^#if_/#if /'
++ sed -e '1,/^IGNORE$/d' -e 's/^@/#/' -e 's/^#[ ]*if_/#if /'
+
+ cat <<EOF
+ #else /* ! NCURSES_EXPANDED */