]> git.pld-linux.org Git - packages/openssl.git/commitdiff
- use openssl_ namespace for man pages links too
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 1 Oct 2008 18:24:36 +0000 (18:24 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    openssl-man-namespace.patch -> 1.1

openssl-man-namespace.patch [new file with mode: 0644]

diff --git a/openssl-man-namespace.patch b/openssl-man-namespace.patch
new file mode 100644 (file)
index 0000000..8e037f7
--- /dev/null
@@ -0,0 +1,38 @@
+--- openssl-0.9.8i/Makefile.org.orig   2008-10-01 00:47:19.398638174 +0200
++++ openssl-0.9.8i/Makefile.org        2008-10-01 17:06:58.554632307 +0200
+@@ -554,7 +554,7 @@
+                       --release=$(VERSION) `basename $$i`") \
+                       >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
+               $(PERL) util/extract-names.pl < $$i | \
+-                      (grep -v $$filecase "^$$fn\$$"; true) | \
++                      (grep -v $$filecase "^$${fn#openssl_}\$$"; true) | \
+                       (grep -v "[     ]"; true) | \
+                       (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
+                        while read n; do \
+@@ -571,11 +571,11 @@
+                       --release=$(VERSION) `basename $$i`") \
+                       >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
+               $(PERL) util/extract-names.pl < $$i | \
+-                      (grep -v $$filecase "^$$fn\$$"; true) | \
++                      (grep -v -E $$filecase "^$${fn#openssl_}\$$"; true) | \
+                       (grep -v "[     ]"; true) | \
+                       (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
+                        while read n; do \
+-                              $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
++                              $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) openssl_"$$n".$${sec}$(MANSUFFIX); \
+                        done); \
+       done
+--- openssl-0.9.8i/util/point.sh.orig  2003-06-11 21:44:37.000000000 +0200
++++ openssl-0.9.8i/util/point.sh       2008-10-01 17:05:49.170637335 +0200
+@@ -1,7 +1,9 @@
+ #!/bin/sh
+ rm -f "$2"
+-if test "$OSTYPE" = msdosdjgpp; then
++if true; then
++    echo ".so $1" > "$2"
++elif test "$OSTYPE" = msdosdjgpp; then
+     cp "$1" "$2"
+ else
+     ln -s "$1" "$2"
This page took 0.149125 seconds and 4 git commands to generate.