]> git.pld-linux.org Git - packages/sbcl.git/commitdiff
- Up to 1.0.2
authorjaphy <japhy@pld-linux.org>
Tue, 30 Jan 2007 18:41:30 +0000 (18:41 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- Make it possible to use unpackaged host CL implementation by passing
  --define bootstrap_cl /path/to/lisp/binary to builder
- Rewrite installation, install to %{_libdir} instead of
  %{_prefix}/lib, make it work on x86_64
- Add /etc/env.d/SBCL_HOME

Changed files:
    sbcl.spec -> 1.16

sbcl.spec

index 51b28e77f732bf841062cc5bde2b77b80eb570cc..7bc24bfb2c6ae6b27ba83429bac2022e249a8ef4 100644 (file)
--- a/sbcl.spec
+++ b/sbcl.spec
@@ -3,23 +3,28 @@
 %bcond_without doc             # build without documentation
 %bcond_with    clisp           # build using clisp instead of sbcl
 #
+# To build with an unpackaged Common Lisp implementation,
+# pass --define bootstrap_cl /path/to/lisp/binary to builder.
+#
 Summary:       The Steel Bank Common Lisp development environment
 Summary(pl):   ¦rodowisko programowania Steel Bank Common Lisp
 Name:          sbcl
-Version:       0.9.10
-Release:       2
+Version:       1.0.2
+Release:       1
 License:       MIT
 Group:         Development/Languages
 Source0:       http://dl.sourceforge.net/sbcl/%{name}-%{version}-source.tar.bz2
-# Source0-md5: 58678d7081f32bdcd174c5233efba4f3
+# Source0-md5: f94b51748e9805687759b5b924f45671
 Patch0:                %{name}-home.patch
 Patch1:                %{name}-threads.patch
 URL:           http://sbcl.sourceforge.net/
+%if %{undefined bootstrap_cl}
 %if %{with clisp}
 BuildRequires: clisp
 %else
 BuildRequires: sbcl
 %endif
+%endif
 %if %{with doc}
 BuildRequires: tetex-dvips
 BuildRequires: texinfo-texi2dvi
@@ -76,11 +81,13 @@ Dokumentacja Steel Bank Common Lisp (SBCL) w formacie PDF.
 %patch1 -p1
 %endif
 
+%if %{undefined bootstrap_cl}
 %if %{with clisp}
 %define bootstrap_cl "clisp"
 %else
 %define bootstrap_cl "sbcl --disable-debugger"
 %endif
+%endif
 
 %build
 GNUMAKE="make"
@@ -94,35 +101,43 @@ make -C doc/manual
 
 %install
 rm -rf $RPM_BUILD_ROOT
-unset SBCL_HOME
-BUILD_ROOT=$RPM_BUILD_ROOT INSTALL_ROOT=%{_prefix} \
-MAN_DIR=%{_mandir} INFO_DIR=%{_infodir} DOC_DIR=%{_docdir}/%{name}-%{version} \
-sh ./install.sh
-cp README PRINCIPLES TODO $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
+mkdir -p $RPM_BUILD_ROOT%{_bindir} $RPM_BUILD_ROOT%{_libdir} \
+    $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT%{_infodir} \
+    $RPM_BUILD_ROOT/etc/env.d
+env -u SBCL_HOME INSTALL_ROOT=`pwd`/_install %{_buildshell} ./install.sh
+mv _install/lib/sbcl $RPM_BUILD_ROOT%{_libdir}/%{name}
+mv _install/bin/sbcl $RPM_BUILD_ROOT%{_bindir}/%{name}
+mv _install/share/man/* $RPM_BUILD_ROOT%{_mandir}
+%if %{with doc}
+mv _install/share/info/*.info* $RPM_BUILD_ROOT%{_infodir}
+%endif
+
+echo SBCL_HOME=%{_libdir}/%{name} > $RPM_BUILD_ROOT/etc/env.d/SBCL_HOME
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+%env_update
+
+%postun
+%env_update
+
+%if %{with doc}
 %post doc-info
 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
 
 %postun doc-info
 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
+%endif
 
 %files
 %defattr(644,root,root,755)
-%attr (755,root,root) %{_bindir}/sbcl
-%{_libdir}/sbcl
+%doc _install/share/doc/sbcl/[A-Z]*
+%attr (755,root,root) %{_bindir}/%{name}
+%{_libdir}/%{name}
 %{_mandir}/man1/*
-%dir %{_docdir}/%{name}-%{version}
-%{_docdir}/%{name}-%{version}/BUGS
-%{_docdir}/%{name}-%{version}/COPYING
-%{_docdir}/%{name}-%{version}/CREDITS
-%{_docdir}/%{name}-%{version}/NEWS
-%{_docdir}/%{name}-%{version}/PRINCIPLES
-%{_docdir}/%{name}-%{version}/README
-%{_docdir}/%{name}-%{version}/SUPPORT
-%{_docdir}/%{name}-%{version}/TODO
+%config(noreplace,missingok) %verify(not md5 mtime size) /etc/env.d/*
 
 %if %{with doc}
 %files doc-info
@@ -131,9 +146,9 @@ rm -rf $RPM_BUILD_ROOT
 
 %files doc-html
 %defattr(644,root,root,755)
-%{_docdir}/%{name}-%{version}/html
+%doc _install/share/doc/sbcl/html/*
 
 %files doc-pdf
 %defattr(644,root,root,755)
-%{_docdir}/%{name}-%{version}/*.pdf
+%doc _install/share/doc/sbcl/*.pdf
 %endif
This page took 0.052601 seconds and 4 git commands to generate.