Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/minised/files: minised-1.11-headers.patch minised-1.11-build.patch digest-minised-1.11
Date: Thu, 11 Oct 2007 05:58:41
Message-Id: E1Ifqh6-00088L-5S@stork.gentoo.org
1 vapier 07/10/11 05:34:48
2
3 Added: minised-1.11-headers.patch minised-1.11-build.patch
4 digest-minised-1.11
5 Log:
6 Version bump #195229.
7 (Portage version: 2.1.3.12)
8
9 Revision Changes Path
10 1.1 sys-apps/minised/files/minised-1.11-headers.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/minised/files/minised-1.11-headers.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/minised/files/minised-1.11-headers.patch?rev=1.1&content-type=text/plain
14
15 Index: minised-1.11-headers.patch
16 ===================================================================
17 --- sedcomp.c
18 +++ sedcomp.c
19 @@ -17,6 +17,8 @@
20
21 #include <stdlib.h> /* exit */
22 #include <stdio.h> /* uses getc, fprintf, fopen, fclose */
23 +#include <string.h> /* strcmp */
24 +#include <ctype.h> /* isdigit */
25 #include "sed.h" /* command type struct and name defines */
26
27 /***** public stuff ******/
28
29
30
31 1.1 sys-apps/minised/files/minised-1.11-build.patch
32
33 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/minised/files/minised-1.11-build.patch?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/minised/files/minised-1.11-build.patch?rev=1.1&content-type=text/plain
35
36 Index: minised-1.11-build.patch
37 ===================================================================
38 --- Makefile
39 +++ Makefile
40 @@ -1,16 +1,18 @@
41 # Makefile for minised
42
43 +DESTDIR=
44 PREFIX=/usr
45
46 minised: sedcomp.o sedexec.o
47 - $(CC) $(LFLAGS) sedcomp.o sedexec.o -o minised
48 + $(CC) $(LDFLAGS) $^ -o $@
49
50 sedcomp.o: sedcomp.c sed.h
51 sedexec.o: sedexec.c sed.h
52
53 install:
54 - install minised $(PREFIX)/bin/
55 - install minised.1 $(PREFIX)/man/man1/
56 + install -d -m 755 $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1
57 + install -m 755 minised $(DESTDIR)$(PREFIX)/bin/
58 + install -m 644 minised.1 $(DESTDIR)$(PREFIX)/share/man/man1/
59
60 clean:
61 rm -f minised sedcomp.o sedexec.o
62
63
64
65 1.1 sys-apps/minised/files/digest-minised-1.11
66
67 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/minised/files/digest-minised-1.11?rev=1.1&view=markup
68 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/minised/files/digest-minised-1.11?rev=1.1&content-type=text/plain
69
70 Index: digest-minised-1.11
71 ===================================================================
72 MD5 6ac191cc631051a8af0004cbd30c256f minised-1.11.tar.gz 28335
73 RMD160 8ff6a54603599ee39415d89cc2e8e5964be2251d minised-1.11.tar.gz 28335
74 SHA256 6028a5800d7e2244624ba99ca656747dfa26338d7dea707349d2b9a007759081 minised-1.11.tar.gz 28335
75
76
77
78 --
79 gentoo-commits@g.o mailing list