Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/nmh/files: nmh-1.3-parallelmake.patch nmh-1.3-db5.patch nmh-1.3-install.patch nmh-1.3-inc-login.patch nmh-1.3-m_getfld.patch
Date: Mon, 27 Sep 2010 17:38:05
Message-Id: 20100927173755.6F4DB20051@flycatcher.gentoo.org
1 hwoarang 10/09/27 17:37:55
2
3 Added: nmh-1.3-parallelmake.patch nmh-1.3-db5.patch
4 nmh-1.3-install.patch nmh-1.3-inc-login.patch
5 nmh-1.3-m_getfld.patch
6 Log:
7 Moved from sunrise overlay. Thanks to Seth Robertson <in-gentoo@××××.org> for the ebuild. Bug #336057
8
9 (Portage version: 2.2_rc86/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.1 mail-client/nmh/files/nmh-1.3-parallelmake.patch
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-parallelmake.patch?rev=1.1&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-parallelmake.patch?rev=1.1&content-type=text/plain
16
17 Index: nmh-1.3-parallelmake.patch
18 ===================================================================
19 diff --git a/etc/Makefile.in b/etc/Makefile.in
20 index f1412b1..9af408d 100644
21 --- a/etc/Makefile.in
22 +++ b/etc/Makefile.in
23 @@ -86,13 +86,13 @@ sendfiles: $(srcdir)/sendfiles.in Makefile
24 install: install-bin-files install-etc-files
25
26 install-bin-files:
27 - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
28 + mkdir -p $(DESTDIR)$(bindir)
29 for script in $(GENERATED_BIN_FILES); do \
30 $(INSTALL_SCRIPT) $$script $(DESTDIR)$(bindir)/$$script; \
31 done
32
33 install-etc-files:
34 - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(etcdir)
35 + mkdir -p $(DESTDIR)$(etcdir)
36 INSTALL_FILES="$(GENERATED_ETC_FILES)"; \
37 for file in $(STATIC_FILES); do \
38 INSTALL_FILES="$$INSTALL_FILES $(srcdir)/$$file"; \
39 diff --git a/man/Makefile.in b/man/Makefile.in
40 index 2ac26f3..7c613bf 100644
41 --- a/man/Makefile.in
42 +++ b/man/Makefile.in
43 @@ -130,14 +130,14 @@ install: install-man1 install-man5 install-man8
44
45 # install the man pages in man1
46 install-man1:
47 - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man$(manext1)
48 + mkdir -p $(DESTDIR)$(mandir)/man$(manext1)
49 for file in $(MAN1); do \
50 $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man$(manext1) ; \
51 done
52
53 # install the man pages in man5
54 install-man5:
55 - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man$(manext5)
56 + mkdir -p $(DESTDIR)$(mandir)/man$(manext5)
57 for file in $(MAN5); do \
58 $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man$(manext5) ; \
59 done
60 @@ -148,7 +148,7 @@ install-man5:
61
62 # install the man pages in man8
63 install-man8:
64 - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man$(manext8)
65 + mkdir -p $(DESTDIR)$(mandir)/man$(manext8)
66 for file in $(MAN8); do \
67 $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man$(manext8) ; \
68 done
69 diff --git a/mts/Makefile.in b/mts/Makefile.in
70 index f739e30..f606fef 100644
71 --- a/mts/Makefile.in
72 +++ b/mts/Makefile.in
73 @@ -43,7 +43,7 @@ SUBDIRS = smtp
74
75 all: all-recursive libmts.a
76
77 -all-recursive:
78 +all-recursive $(OBJS):
79 for subdir in $(SUBDIRS); do \
80 (cd $$subdir && $(MAKE) $(MAKEDEFS) all) || exit 1; \
81 done
82 diff --git a/uip/Makefile.in b/uip/Makefile.in
83 index 5ed34f8..c9239b1 100644
84 --- a/uip/Makefile.in
85 +++ b/uip/Makefile.in
86 @@ -256,13 +256,13 @@ install: install-cmds install-misc install-lcmds install-scmds
87
88 # install commands
89 install-cmds:
90 - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
91 + mkdir -p $(DESTDIR)$(bindir)
92 for cmd in $(CMDS); do \
93 $(INSTALL_PROGRAM) $$cmd $(DESTDIR)$(bindir)/$$cmd; \
94 done
95
96 # install links
97 -install-lcmds:
98 +install-lcmds: install-cmds
99 rm -f $(DESTDIR)$(bindir)/flists
100 rm -f $(DESTDIR)$(bindir)/folders
101 rm -f $(DESTDIR)$(bindir)/prev
102 @@ -274,13 +274,13 @@ install-lcmds:
103
104 # install misc support binaries
105 install-misc:
106 - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(libdir)
107 + mkdir -p $(DESTDIR)$(libdir)
108 for misc in $(MISC); do \
109 $(INSTALL_PROGRAM) $$misc $(DESTDIR)$(libdir)/$$misc; \
110 done
111
112 # install commands with special installation needs (thus no $(SCMDS) use here)
113 -install-scmds:
114 +install-scmds: install-cmds
115 if test x$(SETGID_MAIL) != x; then \
116 $(INSTALL_PROGRAM) -g $(MAIL_SPOOL_GRP) -m 2755 inc $(DESTDIR)$(bindir)/$$cmd; \
117 else \
118
119
120
121 1.1 mail-client/nmh/files/nmh-1.3-db5.patch
122
123 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-db5.patch?rev=1.1&view=markup
124 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-db5.patch?rev=1.1&content-type=text/plain
125
126 Index: nmh-1.3-db5.patch
127 ===================================================================
128 diff --git a/uip/slocal.c b/uip/slocal.c
129 index 9697d84..d38a020 100644
130 --- a/uip/slocal.c
131 +++ b/uip/slocal.c
132 @@ -46,6 +46,12 @@
133 extern int initgroups(char*, int);
134 #endif
135
136 +/* This define is needed for Berkeley db v5 and above to
137 + * make the header file expose the 'historical' ndbm APIs.
138 + * We define it unconditionally because this is simple and
139 + * harmless.
140 + */
141 +#define HAVE_DBM
142 /* This define is needed for Berkeley db v2 and above to
143 * make the header file expose the 'historical' ndbm APIs.
144 * We define it unconditionally because this is simple and
145
146
147
148 1.3 mail-client/nmh/files/nmh-1.3-install.patch
149
150 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-install.patch?rev=1.3&view=markup
151 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-install.patch?rev=1.3&content-type=text/plain
152 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-install.patch?r1=1.2&r2=1.3
153
154
155
156
157 1.3 mail-client/nmh/files/nmh-1.3-inc-login.patch
158
159 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-inc-login.patch?rev=1.3&view=markup
160 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-inc-login.patch?rev=1.3&content-type=text/plain
161 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-inc-login.patch?r1=1.2&r2=1.3
162
163
164
165
166 1.3 mail-client/nmh/files/nmh-1.3-m_getfld.patch
167
168 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-m_getfld.patch?rev=1.3&view=markup
169 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-m_getfld.patch?rev=1.3&content-type=text/plain
170 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/nmh/files/nmh-1.3-m_getfld.patch?r1=1.2&r2=1.3