* gnu/packages/apr.scm, gnu/packages/autotools.scm, gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cmake.scm, gnu/packages/cpio.scm, gnu/packages/cross-base.scm, gnu/packages/emacs.scm, gnu/packages/flex.scm, gnu/packages/fontutils.scm, gnu/packages/glib.scm, gnu/packages/grub.scm, gnu/packages/guile.scm, gnu/packages/idutils.scm, gnu/packages/libevent.scm, gnu/packages/linux.scm, gnu/packages/mail.scm, gnu/packages/make-bootstrap.scm, gnu/packages/mp3.scm, gnu/packages/oggvorbis.scm, gnu/packages/pdf.scm, gnu/packages/plotutils.scm, gnu/packages/qemu.scm, gnu/packages/recutils.scm, gnu/packages/rush.scm, gnu/packages/scheme.scm, gnu/packages/system.scm, gnu/packages/tcsh.scm, gnu/packages/valgrind.scm, gnu/packages/vpn.scm, gnu/packages/w3m: Use the 'patches' field of <origin> instead of adding a patch as input plus using #:patches.
		
			
				
	
	
		
			88 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
| ;;; GNU Guix --- Functional package management for GNU
 | |
| ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
 | |
| ;;;
 | |
| ;;; 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 apr)
 | |
|   #:use-module (guix licenses)
 | |
|   #:use-module (guix packages)
 | |
|   #:use-module (guix download)
 | |
|   #:use-module (guix build-system gnu)
 | |
|   #:use-module (gnu packages)
 | |
|   #:use-module (gnu packages perl)
 | |
|   #:use-module (gnu packages autotools))
 | |
| 
 | |
| (define-public apr
 | |
|   (package
 | |
|     (name "apr")
 | |
|     (version "1.4.8")
 | |
|     (source (origin
 | |
|              (method url-fetch)
 | |
|              (uri (string-append "mirror://apache/apr/apr-"
 | |
|                                  version ".tar.bz2"))
 | |
|              (sha256
 | |
|               (base32
 | |
|                "0884csfk3f530yscak0jlr6w929s3ys0n7fpwdg3dii1sgwd5f31"))
 | |
|              (patches
 | |
|               (list (search-patch "apr-skip-getservbyname-test.patch")))
 | |
|              (patch-flags '("-p0"))))
 | |
|     (build-system gnu-build-system)
 | |
|     (inputs `(("perl" ,perl)
 | |
|               ("libtool" ,libtool)))
 | |
|     (home-page "http://apr.apache.org/")
 | |
|     (synopsis "The Apache Portable Runtime Library")
 | |
|     (description
 | |
|      "The mission of the Apache Portable Runtime (APR) project is to create and
 | |
| maintain software libraries that provide a predictable and consistent interface
 | |
| to underlying platform-specific implementations. The primary goal is to provide
 | |
| an API to which software developers may code and be assured of predictable if
 | |
| not identical behaviour regardless of the platform on which their software is
 | |
| built, relieving them of the need to code special-case conditions to work
 | |
| around or take advantage of platform-specific deficiencies or features.")
 | |
|     (license asl2.0)))
 | |
| 
 | |
| (define-public apr-util
 | |
|   (package
 | |
|     (name "apr-util")
 | |
|     (version "1.5.2")
 | |
|     (source (origin
 | |
|              (method url-fetch)
 | |
|              (uri (string-append "mirror://apache/apr/apr-util-"
 | |
|                                  version ".tar.bz2"))
 | |
|              (sha256
 | |
|               (base32
 | |
|                "19qjxpckb9p4j9pbk8kcirg6k5vqnjrqhnk9xx2c5m9964p3vkls"))))
 | |
|     (build-system gnu-build-system)
 | |
|     (inputs
 | |
|       `(("apr" ,apr)))
 | |
|     (arguments
 | |
|      '(#:phases
 | |
|        (alist-replace
 | |
|         'configure
 | |
|         (lambda* (#:key inputs outputs #:allow-other-keys)
 | |
|           (let ((out (assoc-ref outputs "out"))
 | |
|                 (apr (assoc-ref inputs "apr")))
 | |
|             (setenv "CONFIG_SHELL" (which "bash"))
 | |
|             (zero?
 | |
|              (system* "./configure"
 | |
|                       (string-append "--prefix=" out)
 | |
|                       (string-append "--with-apr=" apr)))))
 | |
|         %standard-phases)))
 | |
|     (home-page "http://apr.apache.org/")
 | |
|     (synopsis "One of the Apache Portable Runtime Library companions")
 | |
|     (description
 | |
|      "APR-util provides a number of helpful abstractions on top of APR.")
 | |
|     (license asl2.0)))
 |