public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-terms/yeahconsole/files: yeahconsole-0.3.4-make.patch
@ 2009-02-25 17:01 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2009-02-25 17:01 UTC (permalink / raw
  To: gentoo-commits

jer         09/02/25 17:01:49

  Added:                yeahconsole-0.3.4-make.patch
  Log:
  Initial commit, thanks to Martín R. Dapás (bug #120112, partly based on the ebuilds attached there).
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.1                  x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.1&content-type=text/plain

Index: yeahconsole-0.3.4-make.patch
===================================================================
--- yeahconsole-0.3.4/Makefile.orig	2006-01-14 16:54:05.000000000 +0100
+++ yeahconsole-0.3.4/Makefile	2009-02-25 17:12:05.000000000 +0100
@@ -1,6 +1,4 @@
 TARGET = yeahconsole
-CC = gcc
-#CC = cc
 INSTALL = install
 
 PREFIX = /usr/local
@@ -8,17 +6,15 @@
 LIBS = -lX11 
 INCLUDES = -I/usr/X11R6/include 
 LIB_DIRS = -L/usr/X11R6/lib
-FLAGS = -Os -Wall
 
 OBJECTS := yeahconsole.o
 SOURCES := yeahconsole.c
 
 $(TARGET): $(OBJECTS) 
 	$(CC) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $@ $<
-	strip $@
 
 $(OBJECTS): $(SOURCES) 
-	$(CC) $(FLAGS)  $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
+	$(CC) $(CFLAGS)  $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
 
 clean:
 	rm -rf $(TARGET) $(OBJECTS)






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-terms/yeahconsole/files: yeahconsole-0.3.4-make.patch
@ 2009-02-25 17:09 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2009-02-25 17:09 UTC (permalink / raw
  To: gentoo-commits

jer         09/02/25 17:09:05

  Modified:             yeahconsole-0.3.4-make.patch
  Log:
  Readd -Wall as originally intended.
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.2                  x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?r1=1.1&r2=1.2

Index: yeahconsole-0.3.4-make.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- yeahconsole-0.3.4-make.patch	25 Feb 2009 17:01:49 -0000	1.1
+++ yeahconsole-0.3.4-make.patch	25 Feb 2009 17:09:05 -0000	1.2
@@ -22,7 +22,7 @@
  
  $(OBJECTS): $(SOURCES) 
 -	$(CC) $(FLAGS)  $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
-+	$(CC) $(CFLAGS)  $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
++	$(CC) $(CFLAGS) -Wall $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
  
  clean:
  	rm -rf $(TARGET) $(OBJECTS)






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-terms/yeahconsole/files: yeahconsole-0.3.4-make.patch
@ 2009-02-26 15:20 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2009-02-26 15:20 UTC (permalink / raw
  To: gentoo-commits

jer         09/02/26 15:20:44

  Modified:             yeahconsole-0.3.4-make.patch
  Log:
  Slightly nicer patch to apply CFLAGS as intended and to apply CFLAGS and LDFLAGS to TARGET was well.
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.3                  x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?r1=1.2&r2=1.3

Index: yeahconsole-0.3.4-make.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- yeahconsole-0.3.4-make.patch	25 Feb 2009 17:09:05 -0000	1.2
+++ yeahconsole-0.3.4-make.patch	26 Feb 2009 15:20:44 -0000	1.3
@@ -1,5 +1,5 @@
 --- yeahconsole-0.3.4/Makefile.orig	2006-01-14 16:54:05.000000000 +0100
-+++ yeahconsole-0.3.4/Makefile	2009-02-25 17:12:05.000000000 +0100
++++ yeahconsole-0.3.4/Makefile	2009-02-26 16:18:25.000000000 +0100
 @@ -1,6 +1,4 @@
  TARGET = yeahconsole
 -CC = gcc
@@ -7,22 +7,24 @@
  INSTALL = install
  
  PREFIX = /usr/local
-@@ -8,17 +6,15 @@
+@@ -8,17 +6,16 @@
  LIBS = -lX11 
  INCLUDES = -I/usr/X11R6/include 
  LIB_DIRS = -L/usr/X11R6/lib
 -FLAGS = -Os -Wall
++FLAGS = -Wall $(CFLAGS)
  
  OBJECTS := yeahconsole.o
  SOURCES := yeahconsole.c
  
  $(TARGET): $(OBJECTS) 
- 	$(CC) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $@ $<
+-	$(CC) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $@ $<
 -	strip $@
++	$(CC) $(FLAGS) $(LDFLAGS) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $@ $<
  
  $(OBJECTS): $(SOURCES) 
 -	$(CC) $(FLAGS)  $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
-+	$(CC) $(CFLAGS) -Wall $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
++	$(CC) $(FLAGS) $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<
  
  clean:
  	rm -rf $(TARGET) $(OBJECTS)






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-terms/yeahconsole/files: yeahconsole-0.3.4-make.patch
@ 2009-03-03  5:17 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2009-03-03  5:17 UTC (permalink / raw
  To: gentoo-commits

jer         09/03/03 05:17:58

  Modified:             yeahconsole-0.3.4-make.patch
  Log:
  Update patch for --as-needed and revision bump (bug #120112 comment #10).
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.4                  x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?r1=1.3&r2=1.4

Index: yeahconsole-0.3.4-make.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- yeahconsole-0.3.4-make.patch	26 Feb 2009 15:20:44 -0000	1.3
+++ yeahconsole-0.3.4-make.patch	3 Mar 2009 05:17:58 -0000	1.4
@@ -20,7 +20,7 @@
  $(TARGET): $(OBJECTS) 
 -	$(CC) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $@ $<
 -	strip $@
-+	$(CC) $(FLAGS) $(LDFLAGS) $(DEFINES) $(INCLUDES) $(LIB_DIRS) $(LIBS) -o $@ $<
++	$(CC) $(FLAGS) $(LDFLAGS) $(DEFINES) $(INCLUDES) $(LIB_DIRS) -o $@ $< $(LIBS)
  
  $(OBJECTS): $(SOURCES) 
 -	$(CC) $(FLAGS)  $(DEFINES) $(INCLUDES) $(LIB_DIRS) -c -o $@ $<






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-terms/yeahconsole/files: yeahconsole-0.3.4-make.patch
@ 2011-01-25  2:40 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2011-01-25  2:40 UTC (permalink / raw
  To: gentoo-commits

jer         11/01/25 02:40:00

  Modified:             yeahconsole-0.3.4-make.patch
  Log:
  Clean up patch. Adjust ebuild accordingly.
  
  (Portage version: 2.2.0_alpha19/cvs/Linux i686)

Revision  Changes    Path
1.5                  x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch?r1=1.4&r2=1.5

Index: yeahconsole-0.3.4-make.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/yeahconsole/files/yeahconsole-0.3.4-make.patch,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- yeahconsole-0.3.4-make.patch	3 Mar 2009 05:17:58 -0000	1.4
+++ yeahconsole-0.3.4-make.patch	25 Jan 2011 02:40:00 -0000	1.5
@@ -1,5 +1,5 @@
---- yeahconsole-0.3.4/Makefile.orig	2006-01-14 16:54:05.000000000 +0100
-+++ yeahconsole-0.3.4/Makefile	2009-02-26 16:18:25.000000000 +0100
+--- a/Makefile	2006-01-14 16:54:05.000000000 +0100
++++ b/Makefile	2009-02-26 16:18:25.000000000 +0100
 @@ -1,6 +1,4 @@
  TARGET = yeahconsole
 -CC = gcc






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-01-25  2:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-25 17:09 [gentoo-commits] gentoo-x86 commit in x11-terms/yeahconsole/files: yeahconsole-0.3.4-make.patch Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-25  2:40 Jeroen Roovers (jer)
2009-03-03  5:17 Jeroen Roovers (jer)
2009-02-26 15:20 Jeroen Roovers (jer)
2009-02-25 17:01 Jeroen Roovers (jer)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox