ship manpage for collateindex.pl, preserve attributes and timestamps in
Makefile
This commit is contained in:
parent
1bcb95a14f
commit
d8f8ae0c0e
@ -1,38 +1,43 @@
|
|||||||
BINDIR = /usr/bin
|
BINDIR = /usr/bin
|
||||||
DESTDIR = /usr/share/sgml/docbook/dsssl-stylesheets-1.74b
|
DESTDIR = /usr/share/sgml/docbook/dsssl-stylesheets-1.74b
|
||||||
|
MANDIR= /usr/share/man
|
||||||
|
|
||||||
all: install
|
all: install
|
||||||
|
|
||||||
install: install-bin install-dtd install-dsl install-img install-misc
|
install: install-bin install-dtd install-dsl install-img install-misc install-man
|
||||||
|
|
||||||
install-bin:
|
install-bin:
|
||||||
mkdir -p $(BINDIR)
|
mkdir -p $(BINDIR)
|
||||||
install bin/collateindex.pl $(BINDIR)
|
install -p bin/collateindex.pl $(BINDIR)
|
||||||
|
|
||||||
|
install-man:
|
||||||
|
mkdir -p $(MANDIR)/man1
|
||||||
|
install -p bin/collateindex.pl.1 $(MANDIR)/man1
|
||||||
|
|
||||||
install-dtd:
|
install-dtd:
|
||||||
mkdir -p $(DESTDIR)/dtds/{decls,dbdsssl,html,imagelib,olink}
|
mkdir -p $(DESTDIR)/dtds/{decls,dbdsssl,html,imagelib,olink}
|
||||||
cp dtds/decls/docbook.dcl $(DESTDIR)/dtds/decls
|
cp -p dtds/decls/docbook.dcl $(DESTDIR)/dtds/decls
|
||||||
cp dtds/decls/xml.dcl $(DESTDIR)/dtds/decls
|
cp -p dtds/decls/xml.dcl $(DESTDIR)/dtds/decls
|
||||||
cp dtds/dbdsssl/dbdsssl.dtd $(DESTDIR)/dtds/dbdsssl
|
cp -p dtds/dbdsssl/dbdsssl.dtd $(DESTDIR)/dtds/dbdsssl
|
||||||
cp dtds/html/dbhtml.dtd $(DESTDIR)/dtds/html
|
cp -p dtds/html/dbhtml.dtd $(DESTDIR)/dtds/html
|
||||||
cp dtds/html/ISOlat1.gml $(DESTDIR)/dtds/html
|
cp -p dtds/html/ISOlat1.gml $(DESTDIR)/dtds/html
|
||||||
cp dtds/imagelib/imagelib.dtd $(DESTDIR)/dtds/imagelib
|
cp -p dtds/imagelib/imagelib.dtd $(DESTDIR)/dtds/imagelib
|
||||||
cp dtds/olink/olinksum.dtd $(DESTDIR)/dtds/olink
|
cp -p dtds/olink/olinksum.dtd $(DESTDIR)/dtds/olink
|
||||||
|
|
||||||
install-dsl:
|
install-dsl:
|
||||||
mkdir -p $(DESTDIR)/{lib,common,html,print,olink}
|
mkdir -p $(DESTDIR)/{lib,common,html,print,olink}
|
||||||
cp lib/dblib.dsl $(DESTDIR)/lib
|
cp -p lib/dblib.dsl $(DESTDIR)/lib
|
||||||
cp common/*.dsl $(DESTDIR)/common
|
cp -p common/*.dsl $(DESTDIR)/common
|
||||||
cp common/*.ent $(DESTDIR)/common
|
cp -p common/*.ent $(DESTDIR)/common
|
||||||
cp html/*.dsl $(DESTDIR)/html
|
cp -p html/*.dsl $(DESTDIR)/html
|
||||||
cp lib/dblib.dsl $(DESTDIR)/lib
|
cp -p lib/dblib.dsl $(DESTDIR)/lib
|
||||||
cp print/*.dsl $(DESTDIR)/print
|
cp -p print/*.dsl $(DESTDIR)/print
|
||||||
cp olink/*.dsl $(DESTDIR)/olink
|
cp -p olink/*.dsl $(DESTDIR)/olink
|
||||||
|
|
||||||
install-img:
|
install-img:
|
||||||
mkdir -p $(DESTDIR)/images/callouts
|
mkdir -p $(DESTDIR)/images/callouts
|
||||||
cp images/*.gif $(DESTDIR)/images
|
cp -p images/*.gif $(DESTDIR)/images
|
||||||
cp images/callouts/*.gif $(DESTDIR)/images/callouts
|
cp -p images/callouts/*.gif $(DESTDIR)/images/callouts
|
||||||
|
|
||||||
#install-test:
|
#install-test:
|
||||||
# mkdir -p $(DESTDIR)/test/{cases,imagelib,xml}
|
# mkdir -p $(DESTDIR)/test/{cases,imagelib,xml}
|
||||||
@ -42,5 +47,5 @@ install-img:
|
|||||||
# cp test/xml/*.* $(DESTDIR)/test/xml
|
# cp test/xml/*.* $(DESTDIR)/test/xml
|
||||||
|
|
||||||
install-misc:
|
install-misc:
|
||||||
cp catalog $(DESTDIR)
|
cp -p catalog $(DESTDIR)
|
||||||
cp VERSION $(DESTDIR)
|
cp -p VERSION $(DESTDIR)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: docbook-style-dsssl
|
Name: docbook-style-dsssl
|
||||||
Version: 1.79
|
Version: 1.79
|
||||||
Release: 7%{?dist}
|
Release: 8%{?dist}
|
||||||
Group: Applications/Text
|
Group: Applications/Text
|
||||||
|
|
||||||
Summary: Norman Walsh's modular stylesheets for DocBook
|
Summary: Norman Walsh's modular stylesheets for DocBook
|
||||||
@ -38,7 +38,7 @@ cp %{SOURCE1} Makefile
|
|||||||
%install
|
%install
|
||||||
DESTDIR=$RPM_BUILD_ROOT
|
DESTDIR=$RPM_BUILD_ROOT
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
make install BINDIR=$DESTDIR/usr/bin DESTDIR=$DESTDIR/usr/share/sgml/docbook/dsssl-stylesheets-%{version}
|
make install BINDIR=$DESTDIR/usr/bin DESTDIR=$DESTDIR/usr/share/sgml/docbook/dsssl-stylesheets-%{version} MANDIR=$DESTDIR%{_mandir}
|
||||||
cd ..
|
cd ..
|
||||||
ln -s dsssl-stylesheets-%{version} $DESTDIR/usr/share/sgml/docbook/dsssl-stylesheets
|
ln -s dsssl-stylesheets-%{version} $DESTDIR/usr/share/sgml/docbook/dsssl-stylesheets
|
||||||
|
|
||||||
@ -48,9 +48,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr (-,root,root)
|
%defattr (-,root,root,-)
|
||||||
%doc BUGS README ChangeLog WhatsNew
|
%doc BUGS README ChangeLog WhatsNew
|
||||||
/usr/bin/collateindex.pl
|
/usr/bin/collateindex.pl
|
||||||
|
%{_mandir}/man1/collateindex.pl.1*
|
||||||
/usr/share/sgml/docbook/dsssl-stylesheets-%{version}
|
/usr/share/sgml/docbook/dsssl-stylesheets-%{version}
|
||||||
/usr/share/sgml/docbook/dsssl-stylesheets
|
/usr/share/sgml/docbook/dsssl-stylesheets
|
||||||
|
|
||||||
@ -87,6 +88,10 @@ fi
|
|||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Aug 28 2009 Ondrej Vasik <ovasik@redhat.com> - 1.79-8
|
||||||
|
- ship manpage for collateindex.pl
|
||||||
|
- preserve attributes and timestamps in Makefile
|
||||||
|
|
||||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.79-7
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.79-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user