2016-05-12 12:22:25 +08:00
|
|
|
##############################################################################
|
|
|
|
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
|
|
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
|
|
#
|
|
|
|
# This file is part of Spack.
|
|
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
|
|
|
# LLNL-CODE-647188
|
|
|
|
#
|
|
|
|
# For details, see https://github.com/llnl/spack
|
|
|
|
# Please also see the LICENSE file for our notice and the LGPL.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License (as
|
|
|
|
# published by the Free Software Foundation) version 2.1, February 1999.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
|
|
|
# conditions of the GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
##############################################################################
|
2016-03-10 10:12:11 +08:00
|
|
|
from spack import *
|
2016-06-03 06:21:41 +08:00
|
|
|
import llnl.util.tty as tty
|
2016-03-10 10:12:11 +08:00
|
|
|
|
2016-06-01 09:28:42 +08:00
|
|
|
|
2016-03-10 10:12:11 +08:00
|
|
|
class Emacs(Package):
|
2016-03-10 10:21:25 +08:00
|
|
|
"""The Emacs programmable text editor."""
|
2016-06-01 09:28:42 +08:00
|
|
|
|
2016-03-10 10:21:25 +08:00
|
|
|
homepage = "https://www.gnu.org/software/emacs"
|
2016-03-10 10:12:11 +08:00
|
|
|
url = "http://ftp.gnu.org/gnu/emacs/emacs-24.5.tar.gz"
|
|
|
|
|
2016-12-08 08:33:41 +08:00
|
|
|
version('25.1', '95c12e6a9afdf0dcbdd7d2efa26ca42c')
|
2016-03-10 10:12:11 +08:00
|
|
|
version('24.5', 'd74b597503a68105e61b5b9f6d065b44')
|
|
|
|
|
2016-06-03 06:21:41 +08:00
|
|
|
variant('X', default=True, description="Enable a X toolkit (GTK+)")
|
2016-08-10 16:50:00 +08:00
|
|
|
variant('gtkplus', default=False,
|
|
|
|
description="Enable a GTK+ as X toolkit (ignored if ~X)")
|
2016-06-01 09:28:42 +08:00
|
|
|
|
2016-03-10 10:12:11 +08:00
|
|
|
depends_on('ncurses')
|
2016-06-03 06:21:41 +08:00
|
|
|
depends_on('libtiff', when='+X')
|
|
|
|
depends_on('libpng', when='+X')
|
|
|
|
depends_on('libxpm', when='+X')
|
|
|
|
depends_on('giflib', when='+X')
|
|
|
|
depends_on('gtkplus', when='+X+gtkplus')
|
2016-03-10 10:12:11 +08:00
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
2016-06-03 06:21:41 +08:00
|
|
|
args = []
|
|
|
|
if '+X' in spec:
|
|
|
|
if '+gtkplus' in spec:
|
|
|
|
toolkit = 'gtk{0}'.format(spec['gtkplus'].version.up_to(1))
|
|
|
|
else:
|
|
|
|
toolkit = 'no'
|
2016-06-01 09:00:03 +08:00
|
|
|
args = [
|
2016-06-03 06:21:41 +08:00
|
|
|
'--with-x',
|
|
|
|
'--with-x-toolkit={0}'.format(toolkit)
|
2016-06-01 09:28:42 +08:00
|
|
|
]
|
2016-06-01 09:00:03 +08:00
|
|
|
else:
|
2016-06-03 06:21:41 +08:00
|
|
|
args = ['--without-x']
|
|
|
|
if '+gtkplus' in spec:
|
|
|
|
tty.warn('The variant +gtkplus is ignored if ~X is selected.')
|
|
|
|
|
|
|
|
configure('--prefix={0}'.format(prefix), *args)
|
2016-06-01 09:28:42 +08:00
|
|
|
|
2016-03-10 10:12:11 +08:00
|
|
|
make()
|
|
|
|
make("install")
|