Codebase list openssl / 8939e2f
Make the section 3SSL instead of 3ssl. Kurt Roeckx 18 years ago
2 changed file(s) with 6 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
124124 MAN1=1
125125 MAN3=3
126126 MANSUFFIX=ssl
127 MANSECTION=SSL
127128 SHELL=/bin/sh
128129
129130 TOP= .
537538 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
538539 (cd `$(PERL) util/dirname.pl $$i`; \
539540 sh -c "$$pod2man \
540 --section=$${sec}$(MANSUFFIX) --center=OpenSSL \
541 --section=$${sec}$(MANSECTION) --center=OpenSSL \
541542 --release=$(VERSION) `basename $$i`") \
542543 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
543544 $(PERL) util/extract-names.pl < $$i | \
554555 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
555556 (cd `$(PERL) util/dirname.pl $$i`; \
556557 sh -c "$$pod2man \
557 --section=$${sec}$(MANSUFFIX) --center=OpenSSL \
558 --section=$${sec}$(MANSECTION) --center=OpenSSL \
558559 --release=$(VERSION) `basename $$i`") \
559560 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
560561 $(PERL) util/extract-names.pl < $$i | \
00 openssl (0.9.8a-8) unstable; urgency=low
11
22 * Call pod2man with the proper section. Section changed
3 from 1 to 1ssl and 3 to 3ssl. The name of the files
4 already had the ssl in, the section didn't.
3 from 1/3/5/7 to 1SSL/3SSL/5SSL/7SSL. The name of the files
4 already had the ssl in, the section didn't. The references
5 to other manpage is still wrong.
56 * Don't install the LICENSE file, it's already in the copyright file.
67 * Don't set an rpath on openssl to point to /usr/lib.
78 * Add support for kfreebsd-amd64. (Closes: #355277)