2014-03-19 00:18:04 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix 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
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages gnustep)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (guix licenses)
|
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
#:use-module (gnu packages fontutils)
|
gnu: Consolidate libjpeg, libpng, and libtiff into one module.
* gnu/packages/image.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add image.scm and remove libjpeg.scm,
libpng.scm, and libtiff.scm.
* gnu/packages/libjpeg.scm, gnu/packages/libpng.scm, gnu/packages/libtiff.scm:
Delete files.
* gnu/packages/emacs.scm gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnustep.scm, gnu/packages/gnuzilla.scm,
gnu/packages/graphviz.scm, gnu/packages/gtk.scm,
gnu/packages/imagemagick.scm, gnu/packages/inkscape.scm,
gnu/packages/netpbm.scm, gnu/packages/pdf.scm, gnu/packages/plotutils.scm,
gnu/packages/qemu.scm, gnu/packages/qt.scm, gnu/packages/scheme.scm,
gnu/packages/sdl.scm, gnu/packages/slim.scm, gnu/packages/tcl.scm,
gnu/packages/texlive.scm, gnu/packages/video.scm, gnu/packages/xiph.scm,
gnu/packages/xorg.scm: Use (gnu packages image) module.
2014-06-25 14:39:02 +02:00
|
|
|
#:use-module (gnu packages image)
|
2014-03-19 00:18:04 +01:00
|
|
|
#:use-module (gnu packages pkg-config))
|
|
|
|
|
|
|
|
(define-public windowmaker
|
|
|
|
(package
|
|
|
|
(name "windowmaker")
|
2014-10-03 17:48:21 +02:00
|
|
|
(version "0.95.6")
|
2014-03-19 00:18:04 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://windowmaker.org/pub/source/release/WindowMaker-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2014-10-03 17:48:21 +02:00
|
|
|
"1i3dw1yagsa3rs9x2na2ynqlgmbahayws0kz4vl00fla6550nns3"))))
|
2014-03-19 00:18:04 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2014-11-12 20:44:20 +01:00
|
|
|
'(#:phases (alist-cons-before
|
|
|
|
'configure 'pre-configure
|
2014-03-19 00:18:04 +01:00
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2014-11-12 20:44:20 +01:00
|
|
|
;; 'wmaker' wants to invoke 'wmaker.inst' the first time,
|
|
|
|
;; and the 'wmsetbg', so make sure it uses the right ones.
|
|
|
|
;; We can't use a wrapper here because that would pollute
|
|
|
|
;; $PATH in the whole session.
|
2014-03-19 00:18:04 +01:00
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin")))
|
2014-11-12 20:44:20 +01:00
|
|
|
(substitute* "src/main.c"
|
|
|
|
(("\"wmaker\\.inst")
|
|
|
|
(string-append "\"" bin "/wmaker.inst")))
|
|
|
|
(substitute* '("src/defaults.c" "WPrefs.app/Menu.c")
|
|
|
|
(("\"wmsetbg")
|
|
|
|
(string-append "\"" bin "/wmsetbg")))))
|
|
|
|
(alist-cons-after
|
|
|
|
'install 'wrap
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
;; In turn, 'wmaker.inst' wants to invoke 'wmmenugen'
|
|
|
|
;; etc., so make sure everything is in $PATH.
|
|
|
|
(wrap-program (string-append bin "/wmaker.inst")
|
|
|
|
`("PATH" ":" prefix (,bin)))))
|
|
|
|
%standard-phases))))
|
2014-03-19 00:18:04 +01:00
|
|
|
(inputs
|
|
|
|
`(("libxmu" ,libxmu)
|
|
|
|
("libxft" ,libxft)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("fontconfig" ,fontconfig)
|
|
|
|
("libjpeg" ,libjpeg)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://windowmaker.org/")
|
|
|
|
(synopsis "NeXTSTEP-like window manager")
|
|
|
|
(description
|
|
|
|
"Window Maker is an X11 window manager originally designed to provide
|
|
|
|
integration support for the GNUstep Desktop Environment. In every way
|
|
|
|
possible, it reproduces the elegant look and feel of the NeXTSTEP user
|
|
|
|
interface. It is fast, feature rich, easy to configure, and easy to use.")
|
|
|
|
|
|
|
|
;; Artwork is distributed under the WTFPL.
|
|
|
|
(license gpl2+)))
|