auto-import changelog data from slang-1.4.5-10.src.rpm
Tue Jul 09 2002 Bill Nottingham <notting@redhat.com> 1.4.5-10 - fix segfault in odd environments Mon Jul 08 2002 Bill Nottingham <notting@redhat.com> 1.4.5-9 - tweak UTF-8 linedrawing patch slightly; add README describing some of the changes - fix a utee/dtee typo Wed Jun 26 2002 Bill Nottingham <notting@redhat.com> 1.4.5-7 - add patch to support ACS linedrawing characters in UTF-8 Fri Jun 21 2002 Tim Powers <timp@redhat.com> - automated rebuild Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 1.4.5-5 - removed keymap patch (#59171) - added Debian utf8 patch Thu May 23 2002 Tim Powers <timp@redhat.com> - automated rebuild
This commit is contained in:
parent
f8bf58d72d
commit
9ad29f311e
46
slang.spec
46
slang.spec
@ -1,13 +1,15 @@
|
|||||||
Summary: The shared library for the S-Lang extension language.
|
Summary: The shared library for the S-Lang extension language.
|
||||||
Name: slang
|
Name: slang
|
||||||
Version: 1.4.5
|
Version: 1.4.5
|
||||||
Release: 2
|
Release: 10
|
||||||
Copyright: GPL
|
Copyright: GPL
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Source: ftp://space.mit.edu/pub/davis/slang/v1.4/slang-%{version}.tar.bz2
|
Source: ftp://space.mit.edu/pub/davis/slang/v1.4/slang-%{version}.tar.bz2
|
||||||
Patch: slang-1.4.5-keymap.patch
|
Source2: README.UTF-8
|
||||||
|
Patch: slang-debian-utf8.patch
|
||||||
|
Patch2: slang-utf8-acs.patch
|
||||||
Url: http://www.s-lang.org/
|
Url: http://www.s-lang.org/
|
||||||
Buildroot: /var/tmp/slang-root
|
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||||
|
|
||||||
%description
|
%description
|
||||||
S-Lang is an interpreted language and a programming library. The
|
S-Lang is an interpreted language and a programming library. The
|
||||||
@ -33,7 +35,10 @@ based on the S-Lang extension language.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n slang-%{version} -q
|
%setup -n slang-%{version} -q
|
||||||
%patch -p1
|
%patch -p1 -b .utf8
|
||||||
|
%patch2 -p1 -b .acs
|
||||||
|
|
||||||
|
cp %{SOURCE2} .
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl -p -i -e 's/(ELF_CFLAGS=\"[^\"]*)-O2([^\"]*\".*)/$1'"$RPM_OPT_FLAGS"' $2/gs' configure
|
perl -p -i -e 's/(ELF_CFLAGS=\"[^\"]*)-O2([^\"]*\".*)/$1'"$RPM_OPT_FLAGS"' $2/gs' configure
|
||||||
@ -48,7 +53,9 @@ mkdir -p $RPM_BUILD_ROOT/usr/include/slang
|
|||||||
%makeinstall \
|
%makeinstall \
|
||||||
install_lib_dir=$RPM_BUILD_ROOT/usr/lib \
|
install_lib_dir=$RPM_BUILD_ROOT/usr/lib \
|
||||||
install_include_dir=$RPM_BUILD_ROOT/usr/include/slang install-elf
|
install_include_dir=$RPM_BUILD_ROOT/usr/include/slang install-elf
|
||||||
ln -sf libslang.so.1.4.5 $RPM_BUILD_ROOT/usr/lib/libslang.so.1
|
ln -sf libslang-utf8.so.1.4.5 $RPM_BUILD_ROOT/usr/lib/libslang-utf8.so.1
|
||||||
|
ln -sf libslang-utf8.so $RPM_BUILD_ROOT/usr/lib/libslang.so
|
||||||
|
ln -sf libslang-utf8.a $RPM_BUILD_ROOT/usr/lib/libslang.a
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -59,16 +66,37 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
/usr/lib/libslang.so.*
|
/usr/lib/libslang*.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc doc
|
%doc doc README.UTF-8
|
||||||
/usr/lib/libslang.a
|
/usr/lib/libslang*.a
|
||||||
/usr/lib/libslang.so
|
/usr/lib/libslang*.so
|
||||||
/usr/include/slang
|
/usr/include/slang
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 9 2002 Bill Nottingham <notting@redhat.com> 1.4.5-10
|
||||||
|
- fix segfault in odd environments
|
||||||
|
|
||||||
|
* Mon Jul 8 2002 Bill Nottingham <notting@redhat.com> 1.4.5-9
|
||||||
|
- tweak UTF-8 linedrawing patch slightly; add README describing some of
|
||||||
|
the changes
|
||||||
|
- fix a utee/dtee typo
|
||||||
|
|
||||||
|
* Wed Jun 26 2002 Bill Nottingham <notting@redhat.com> 1.4.5-7
|
||||||
|
- add patch to support ACS linedrawing characters in UTF-8
|
||||||
|
|
||||||
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||||
|
- automated rebuild
|
||||||
|
|
||||||
|
* Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 1.4.5-5
|
||||||
|
- removed keymap patch (#59171)
|
||||||
|
- added Debian utf8 patch
|
||||||
|
|
||||||
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
||||||
|
- automated rebuild
|
||||||
|
|
||||||
* Tue Mar 5 2002 Bill Nottingham <notting@redhat.com>
|
* Tue Mar 5 2002 Bill Nottingham <notting@redhat.com>
|
||||||
- fix symlink & ia64 fubarness
|
- fix symlink & ia64 fubarness
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user