Emacs: added gnutls variant (tested on Centos 7) (#6711)

This commit is contained in:
Peter Doak
2017-12-19 02:36:54 -05:00
committed by Massimiliano Culpo
parent 69f959ec0b
commit d4c84be91b
2 changed files with 12 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ class Emacs(AutotoolsPackage):
values=('gtk', 'athena'),
description="Select an X toolkit (gtk, athena)"
)
variant('tls', default=False, description="Build Emacs with gnutls")
depends_on('pkgconfig', type='build')
@@ -55,6 +56,9 @@ class Emacs(AutotoolsPackage):
depends_on('libx11', when='+X')
depends_on('libxaw', when='+X toolkit=athena')
depends_on('gtkplus+X', when='+X toolkit=gtk')
depends_on('gnutls', when='+tls')
depends_on('libxpm ^gettext+libunistring', when='+tls')
depends_on('ncurses+termlib', when='+tls')
def configure_args(self):
spec = self.spec