Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/mydns/files: mydns-1.1.0-gentoo.patch
Date: Sun, 28 Dec 2008 01:38:59
Message-Id: E1LGkcL-0007VM-IG@stork.gentoo.org
1 matsuu 08/12/28 01:38:57
2
3 Added: mydns-1.1.0-gentoo.patch
4 Log:
5 Fixed static issue, bug #183518. Replaced autoconf to eautoreconf, bug #226413. Fixed QA issue.
6 (Portage version: 2.1.6.3/cvs/Linux 2.6.28-gentoo x86_64)
7
8 Revision Changes Path
9 1.1 net-dns/mydns/files/mydns-1.1.0-gentoo.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/mydns/files/mydns-1.1.0-gentoo.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/mydns/files/mydns-1.1.0-gentoo.patch?rev=1.1&content-type=text/plain
13
14 Index: mydns-1.1.0-gentoo.patch
15 ===================================================================
16 diff -Naur mydns-1.1.0.orig/doc/Makefile.am mydns-1.1.0/doc/Makefile.am
17 --- mydns-1.1.0.orig/doc/Makefile.am 2004-02-28 03:28:06.000000000 +0900
18 +++ mydns-1.1.0/doc/Makefile.am 2008-12-28 09:48:57.000000000 +0900
19 @@ -33,25 +33,25 @@
20 fi
21
22 mydns.8: sedfile ${@:=.in}
23 - $(SHELL) @top_srcdir@/missing --run sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
24 + sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
25
26 mydnscheck.8: sedfile ${@:=.in}
27 - $(SHELL) @top_srcdir@/missing --run sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
28 + sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
29
30 mydns.conf.5: sedfile ${@:=.in}
31 - $(SHELL) @top_srcdir@/missing --run sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
32 + sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
33
34 mydns-conf.8: sedfile ${@:=.in}
35 - $(SHELL) @top_srcdir@/missing --run sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
36 + sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
37
38 mydnsexport.8: sedfile ${@:=.in}
39 - $(SHELL) @top_srcdir@/missing --run sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
40 + sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
41
42 mydnsimport.8: sedfile ${@:=.in}
43 - $(SHELL) @top_srcdir@/missing --run sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
44 + sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
45
46 mydnsptrconvert.8: sedfile ${@:=.in}
47 - $(SHELL) @top_srcdir@/missing --run sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
48 + sed -f @SEDFILE@ ${@:=.in} | tr -s '\n' > $@
49
50 html:
51 if [ -x /usr/local/bin/mydns-texi2html ]; then /usr/local/bin/mydns-texi2html mydns.texi; fi
52 diff -Naur mydns-1.1.0.orig/m4/mydns.m4 mydns-1.1.0/m4/mydns.m4
53 --- mydns-1.1.0.orig/m4/mydns.m4 2006-01-19 07:08:14.000000000 +0900
54 +++ mydns-1.1.0/m4/mydns.m4 2008-12-28 09:29:30.000000000 +0900
55 @@ -363,7 +363,6 @@
56 AC_C_CFLAGS(-fomit-frame-pointer)
57 AC_C_CFLAGS(-finline-functions)
58 AC_C_CFLAGS(-ffast-math)
59 - LDFLAGS="$LDFLAGS -static"
60 fi
61 fi
62 ], [
63 @@ -372,7 +371,6 @@
64 AC_C_CFLAGS(-fomit-frame-pointer)
65 AC_C_CFLAGS(-finline-functions)
66 AC_C_CFLAGS(-ffast-math)
67 - LDFLAGS="$LDFLAGS -static"
68 fi
69 ]
70 )