View | Details | Raw Unified | Return to bug 178646
Collapse All | Expand All

(-)Makefile (+2 lines)
Lines 85-89 Link Here
85
	${REINPLACE_CMD} -e 's,/usr/local/etc/wgetrc,${PREFIX}/etc/wgetrc,' \
85
	${REINPLACE_CMD} -e 's,/usr/local/etc/wgetrc,${PREFIX}/etc/wgetrc,' \
86
			 -e 's,@file{},@file{${PREFIX}},' \
86
			 -e 's,@file{},@file{${PREFIX}},' \
87
		${WRKSRC}/doc/sample.wgetrc* ${WRKSRC}/doc/wget.texi
87
		${WRKSRC}/doc/sample.wgetrc* ${WRKSRC}/doc/wget.texi
88
	pwd
89
	${PATCH} -d ${WRKSRC} -p1 < ${FILESDIR}/001-fix-texinfo.diff
88
90
89
.include <bsd.port.mk>
91
.include <bsd.port.mk>
(-)files/001-fix-texinfo.diff (+59 lines)
Line 0 Link Here
1
From 9e8d899a356d95be34737488bb8fd59d4c6b3dbd Mon Sep 17 00:00:00 2001
2
From: Stefano Lattarini <stefano.lattarini@gmail.com>
3
Date: Thu, 08 Nov 2012 11:15:41 +0000
4
Subject: docs: fix errors and warnings with Texinfo 5
5
6
Or rather, with the development version 4.13.90, which will eventually
7
become Texinfo 5.0.
8
9
* doc/wget.texi: Use '@item' instead of '@itemx' in several places,
10
as Texinfo 5 refuses to process an '@itemx' that is not preceded by an
11
'@item'.
12
13
Copyright-paperwork-exempt: yes
14
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
15
---
16
(limited to 'doc/wget.texi')
17
18
diff --git a/doc/wget.texi b/doc/wget.texi
19
index 400debe..8fd6801 100644
20
--- a/doc/wget.texi
21
+++ b/doc/wget.texi
22
@@ -875,7 +875,7 @@ recommendation to block many unrelated users from a web site due to the
23
 actions of one.
24
 
25
 @cindex proxy
26
-@itemx --no-proxy
27
+@item --no-proxy
28
 Don't use proxies, even if the appropriate @code{*_proxy} environment
29
 variable is defined.
30
 
31
@@ -976,7 +976,7 @@ are outside the range of @sc{ascii} characters (that is, greater than
32
 whose encoding does not match the one used locally.
33
 
34
 @cindex IPv6
35
-@itemx -4
36
+@item -4
37
 @itemx --inet4-only
38
 @itemx -6
39
 @itemx --inet6-only
40
@@ -3093,7 +3093,7 @@ display properly---the same as @samp{-p}.
41
 Change setting of passive @sc{ftp}, equivalent to the
42
 @samp{--passive-ftp} option.
43
 
44
-@itemx password = @var{string}
45
+@item password = @var{string}
46
 Specify password @var{string} for both @sc{ftp} and @sc{http} file retrieval. 
47
 This command can be overridden using the @samp{ftp_password} and 
48
 @samp{http_password} command for @sc{ftp} and @sc{http} respectively.
49
@@ -3604,7 +3604,7 @@ In addition to the environment variables, proxy location and settings
50
 may be specified from within Wget itself.
51
 
52
 @table @samp
53
-@itemx --no-proxy
54
+@item --no-proxy
55
 @itemx proxy = on/off
56
 This option and the corresponding command may be used to suppress the
57
 use of proxy, even if the appropriate environment variables are set.
58
--
59
cgit v0.9.0.2

Return to bug 178646