Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/hd2u/files: hd2u-1.0.0-build.patch hd2u-1.0.3-build.patch
Date: Wed, 05 Jan 2011 18:24:30
Message-Id: 20110105182420.92F5820051@flycatcher.gentoo.org
1 jlec 11/01/05 18:24:20
2
3 Modified: hd2u-1.0.0-build.patch
4 Added: hd2u-1.0.3-build.patch
5 Log:
6 Version Bump, Some Clean up
7
8 (Portage version: 2.2.0_alpha12/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 app-text/hd2u/files/hd2u-1.0.0-build.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hd2u/files/hd2u-1.0.0-build.patch?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hd2u/files/hd2u-1.0.0-build.patch?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hd2u/files/hd2u-1.0.0-build.patch?r1=1.1&r2=1.2
16
17 Index: hd2u-1.0.0-build.patch
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/hd2u/files/hd2u-1.0.0-build.patch,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- hd2u-1.0.0-build.patch 11 Jul 2006 06:17:53 -0000 1.1
24 +++ hd2u-1.0.0-build.patch 5 Jan 2011 18:24:20 -0000 1.2
25 @@ -1,19 +1,21 @@
26 ---- Makefile.in
27 -+++ Makefile.in
28 -@@ -31,7 +31,7 @@
29 - README \
30 - TODO
31 - INSTALL = @INSTALL@
32 --LIBS= @LIBS@
33 -+LIBS= @LIBS@ @LDFLAGS@
34 -
35 +diff --git a/Makefile.in b/Makefile.in
36 +index 328016c..f8cc6aa 100644
37 +--- a/Makefile.in
38 ++++ b/Makefile.in
39 +@@ -36,7 +36,7 @@ LIBS= @LIBS@
40 all: $(TARGET)
41
42 -@@ -59,9 +59,10 @@
43 + $(TARGET): $(TARGET).c config.h
44 +- $(CC) $(CFLAGS) -o $@ $(@:%=%.c) $(LIBS)
45 ++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(@:%=%.c) $(LIBS)
46 +
47 + rebuild: cleanall $(TARGET)
48 +
49 +@@ -59,9 +59,10 @@ cleanall: clean
50 mrproper: cleanall
51 distclean: cleanall
52
53 -+BUILD_ROOT = $(DESTDIR)
54 ++BUILD_ROOT=$(DESTDIR)
55 install:
56 $(INSTALL) -d -m 755 $(BUILD_ROOT)$(BIN_DIR)
57 - $(INSTALL) -m 755 -s $(TARGET) $(BUILD_ROOT)$(BIN_DIR)
58
59
60
61 1.1 app-text/hd2u/files/hd2u-1.0.3-build.patch
62
63 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hd2u/files/hd2u-1.0.3-build.patch?rev=1.1&view=markup
64 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hd2u/files/hd2u-1.0.3-build.patch?rev=1.1&content-type=text/plain
65
66 Index: hd2u-1.0.3-build.patch
67 ===================================================================
68 diff --git a/Makefile.in b/Makefile.in
69 index 2a67b3c..651323d 100644
70 --- a/Makefile.in
71 +++ b/Makefile.in
72 @@ -42,7 +42,7 @@ LIBS= @LIBS@
73 all: $(TARGET)
74
75 $(TARGET): $(TARGET).c config.h
76 - $(CC) $(CFLAGS) -o $@ $(@:%=%.c) $(LIBS)
77 + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(@:%=%.c) $(LIBS)
78
79
80 all-optimized: $(TARGET)-optimized
81 @@ -98,9 +98,10 @@ cleanall: clean
82 mrproper: cleanall
83 distclean: cleanall
84
85 +BUILD_ROOT=$(DESTDIR)
86 install:
87 $(INSTALL) -d -m 755 $(BUILD_ROOT)$(BIN_DIR)
88 - $(INSTALL) -m 755 -s $(TARGET) $(BUILD_ROOT)$(BIN_DIR)
89 + $(INSTALL) -m 755 $(TARGET) $(BUILD_ROOT)$(BIN_DIR)
90
91 tarball:
92 $(INSTALL) -d -m 755 ./$(PACKAGE_NAME)-$(PACKAGE_VERSION)