| 1 | Summary: SGML and XML parser |
|---|
| 2 | Summary(ja): SGML, XML パーサ |
|---|
| 3 | Name: opensp |
|---|
| 4 | Version: 1.5.2 |
|---|
| 5 | Release: 7%{?_dist_release} |
|---|
| 6 | URL: http://openjade.sourceforge.net/ |
|---|
| 7 | Source: http://download.sourceforge.net/openjade/OpenSP-%{version}.tar.gz |
|---|
| 8 | Patch0: opensp-multilib.patch |
|---|
| 9 | Patch1: opensp-nodeids.patch |
|---|
| 10 | Patch2: opensp-sigsegv.patch |
|---|
| 11 | License: BSD |
|---|
| 12 | Group: Applications/Text |
|---|
| 13 | |
|---|
| 14 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
|---|
| 15 | BuildRequires: xmlto, jadetex |
|---|
| 16 | Requires: sgml-common >= 0.5 |
|---|
| 17 | |
|---|
| 18 | %description |
|---|
| 19 | OpenSP is an implementation of the ISO/IEC 8879:1986 standard SGML |
|---|
| 20 | (Standard Generalized Markup Language). OpenSP is based on James |
|---|
| 21 | Clark's SP implementation of SGML. OpenSP is a command-line |
|---|
| 22 | application and a set of components, including a generic API. |
|---|
| 23 | |
|---|
| 24 | %package devel |
|---|
| 25 | Summary: Files for developing applications that use OpenSP |
|---|
| 26 | Group: Development/Libraries |
|---|
| 27 | Requires: %{name} = %{version}-%{release} |
|---|
| 28 | |
|---|
| 29 | %description devel |
|---|
| 30 | Header files and libtool library for developing applications that use OpenSP. |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | %prep |
|---|
| 34 | %setup -q -n OpenSP-%{version} |
|---|
| 35 | %patch0 -p1 -b .multilib |
|---|
| 36 | %patch1 -p1 -b .nodeids |
|---|
| 37 | %patch2 -p1 -b .sigsegv |
|---|
| 38 | |
|---|
| 39 | %build |
|---|
| 40 | %configure --disable-dependency-tracking --disable-static --enable-http \ |
|---|
| 41 | --enable-default-catalog=%{_sysconfdir}/sgml/catalog \ |
|---|
| 42 | --enable-default-search-path=%{_datadir}/sgml:%{_datadir}/xml |
|---|
| 43 | make %{?_smp_mflags} |
|---|
| 44 | |
|---|
| 45 | %install |
|---|
| 46 | rm -rf $RPM_BUILD_ROOT |
|---|
| 47 | |
|---|
| 48 | make install DESTDIR=$RPM_BUILD_ROOT |
|---|
| 49 | |
|---|
| 50 | # Fix up libtool libraries |
|---|
| 51 | find $RPM_BUILD_ROOT -name '*.la' | \ |
|---|
| 52 | xargs perl -p -i -e "s|-L$RPM_BUILD_DIR[\w/.-]*||g" |
|---|
| 53 | |
|---|
| 54 | # oMy, othis ois osilly. |
|---|
| 55 | for file in nsgmls sgmlnorm spam spent sx ; do |
|---|
| 56 | ln -s o$file $RPM_BUILD_ROOT%{_bindir}/$file |
|---|
| 57 | echo ".so man1/o${file}.1" > $RPM_BUILD_ROOT%{_mandir}/man1/${file}.1 |
|---|
| 58 | done |
|---|
| 59 | |
|---|
| 60 | # |
|---|
| 61 | # Rename sx to sgml2xml. |
|---|
| 62 | mv $RPM_BUILD_ROOT%{_bindir}/sx $RPM_BUILD_ROOT%{_bindir}/sgml2xml |
|---|
| 63 | mv $RPM_BUILD_ROOT%{_mandir}/man1/{sx,sgml2xml}.1 |
|---|
| 64 | |
|---|
| 65 | # |
|---|
| 66 | # Clean out (installed) redundant copies of the docs and DTDs. |
|---|
| 67 | rm -rf $RPM_BUILD_ROOT%{_docdir}/OpenSP |
|---|
| 68 | rm -rf $RPM_BUILD_ROOT%{_datadir}/OpenSP |
|---|
| 69 | |
|---|
| 70 | %find_lang sp5 |
|---|
| 71 | |
|---|
| 72 | ## remove unuse files |
|---|
| 73 | rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la |
|---|
| 74 | |
|---|
| 75 | |
|---|
| 76 | %check |
|---|
| 77 | make check || : # failures as of 1.5.2pre1 :( |
|---|
| 78 | |
|---|
| 79 | |
|---|
| 80 | %clean |
|---|
| 81 | rm -rf $RPM_BUILD_ROOT |
|---|
| 82 | |
|---|
| 83 | |
|---|
| 84 | %post -p /sbin/ldconfig |
|---|
| 85 | |
|---|
| 86 | %postun -p /sbin/ldconfig |
|---|
| 87 | |
|---|
| 88 | |
|---|
| 89 | %files -f sp5.lang |
|---|
| 90 | %defattr(-,root,root) |
|---|
| 91 | %doc doc/*.htm |
|---|
| 92 | %doc docsrc/releasenotes.html |
|---|
| 93 | %doc AUTHORS BUGS COPYING ChangeLog NEWS README |
|---|
| 94 | %doc pubtext/opensp-implied.dcl |
|---|
| 95 | %{_bindir}/* |
|---|
| 96 | %{_libdir}/libosp.so.* |
|---|
| 97 | %{_mandir}/man1/*.1* |
|---|
| 98 | |
|---|
| 99 | %files devel |
|---|
| 100 | %defattr(-,root,root) |
|---|
| 101 | %{_includedir}/OpenSP/ |
|---|
| 102 | %{_libdir}/libosp.so |
|---|
| 103 | #%{_libdir}/libosp.la |
|---|
| 104 | |
|---|
| 105 | |
|---|
| 106 | %changelog |
|---|
| 107 | * Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 1.5.2-7 |
|---|
| 108 | - rebuilt with rpm-4.8.1-3 |
|---|
| 109 | |
|---|
| 110 | * Fri Feb 19 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.2-6 |
|---|
| 111 | - rebuilt with new toolchain |
|---|
| 112 | |
|---|
| 113 | * Fri Sep 26 2008 Shu KONNO <owa@bg.wakwak.com> 1.5.2-5vl5 |
|---|
| 114 | - removed *.la |
|---|
| 115 | - spec in utf-8 |
|---|
| 116 | |
|---|
| 117 | * Sun May 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.2-4vl5 |
|---|
| 118 | - added Patch1 and 2 from Fedora |
|---|
| 119 | * Thu Jun 21 2007 Ondrej Vasik <ovasik@redhat.com> |
|---|
| 120 | - fixed SIGSEGV (bug #245104) |
|---|
| 121 | * Mon Feb 12 2007 Tim Waugh <twaugh@redhat.com> |
|---|
| 122 | - Give IDs to nodes in the release notes source to prevent releasenotes.html |
|---|
| 123 | having multilib conflicts (bug #228320). |
|---|
| 124 | |
|---|
| 125 | * Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.5.2-3vl1 |
|---|
| 126 | - based on FC6 1.5.2-3.1, built on new toolchain |
|---|
| 127 | |
|---|
| 128 | * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5.2-3.1 |
|---|
| 129 | - rebuild |
|---|
| 130 | |
|---|
| 131 | * Tue Jun 13 2006 Tim Waugh <twaugh@redhat.com> 1.5.2-3 |
|---|
| 132 | - Fixed multilib fix (bug #194702). |
|---|
| 133 | |
|---|
| 134 | * Fri May 26 2006 Tim Waugh <twaugh@redhat.com> 1.5.2-2 |
|---|
| 135 | - Fixed multilib devel conflicts (bug #192741). |
|---|
| 136 | |
|---|
| 137 | * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.5.2-1.2 |
|---|
| 138 | - bump again for double-long bug on ppc(64) |
|---|
| 139 | |
|---|
| 140 | * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.5.2-1.1 |
|---|
| 141 | - rebuilt for new gcc4.1 snapshot and glibc changes |
|---|
| 142 | |
|---|
| 143 | * Thu Jan 5 2006 Tim Waugh <twaugh@redhat.com> 1.5.2-1 |
|---|
| 144 | - 1.5.2. |
|---|
| 145 | |
|---|
| 146 | * Tue Dec 14 2005 Tim Waugh <twaugh@redhat.com> 1.5.1-2 |
|---|
| 147 | - Backported patch from 1.5.2pre1 to fix ArcEngine crash. |
|---|
| 148 | |
|---|
| 149 | * Tue Dec 13 2005 Tim Waugh <twaugh@redhat.com> 1.5.1-1 |
|---|
| 150 | - Back down to 1.5.1 for now. |
|---|
| 151 | - Fixes for GCC4.1. |
|---|
| 152 | |
|---|
| 153 | * Sun Dec 4 2005 Ville Skytt辰 <ville.skytta at iki.fi> - 1.5.2-0.1.pre1 |
|---|
| 154 | - Fix build dependencies. |
|---|
| 155 | - Require exact version of main package in -devel. |
|---|
| 156 | - Build with dependency tracking disabled. |
|---|
| 157 | - Add %%{_datadir}/xml to default search path. |
|---|
| 158 | - Run test suite during build. |
|---|
| 159 | - Add URL tag. |
|---|
| 160 | - Use %%find_lang. |
|---|
| 161 | - Cosmetic improvements. |
|---|
| 162 | |
|---|
| 163 | * Tue Nov 29 2005 Terje Bless <link@pobox.com> 1.5.2-0.pre1 |
|---|
| 164 | - New package OpenSP. |
|---|
| 165 | |
|---|