public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-accessibility/emacspeak/files: emacspeak-33.0-respect-ldflags.patch emacspeak-33.0-greader-garbage.patch
@ 2010-12-02 15:31 William Hubbs (williamh)
  0 siblings, 0 replies; 2+ messages in thread
From: William Hubbs (williamh) @ 2010-12-02 15:31 UTC (permalink / raw
  To: gentoo-commits

williamh    10/12/02 15:31:41

  Added:                emacspeak-33.0-respect-ldflags.patch
                        emacspeak-33.0-greader-garbage.patch
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha6/cvs/Linux i686)

Revision  Changes    Path
1.1                  app-accessibility/emacspeak/files/emacspeak-33.0-respect-ldflags.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/files/emacspeak-33.0-respect-ldflags.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/files/emacspeak-33.0-respect-ldflags.patch?rev=1.1&content-type=text/plain

Index: emacspeak-33.0-respect-ldflags.patch
===================================================================
From aa02a6b3aed32612ca1c2c69fc9d0234efeeef0e Mon Sep 17 00:00:00 2001
From: William Hubbs <w.d.hubbs@gmail.com>
Date: Wed, 1 Dec 2010 17:41:35 -0600
Subject: [PATCH] server makefiles should respect LDFLAGS

---
 servers/linux-espeak/Makefile  |    2 +-
 servers/linux-outloud/Makefile |    4 ++--
 servers/software-dtk/Makefile  |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/servers/linux-espeak/Makefile b/servers/linux-espeak/Makefile
index 2fd8f66..d247b04 100644
--- a/servers/linux-espeak/Makefile
+++ b/servers/linux-espeak/Makefile
@@ -15,7 +15,7 @@ TTS=tclespeak.so
 all:   $(TTS)
 
 $(TTS): tclespeak.o
-	$(CXX) -shared -o $@ $< $(LIBS)
+	$(CXX) $(LDFLAGS) -shared -o $@ $< $(LIBS)
 
 clean:
 	rm -f *.so *.o
diff --git a/servers/linux-outloud/Makefile b/servers/linux-outloud/Makefile
index 0e5a061..c6915a8 100644
--- a/servers/linux-outloud/Makefile
+++ b/servers/linux-outloud/Makefile
@@ -15,10 +15,10 @@ LIBS= -ltcl$(TCL_VERSION) -lasound -ldl
 all:   atcleci.so
 
 atcleci.so: langswitch.o atcleci.o
-	$(CXX) -m32 -shared -o $@ langswitch.o atcleci.o $(LIBS)
+	$(CXX) $(LDFLAGS) -m32 -shared -o $@ langswitch.o atcleci.o $(LIBS)
 
 alsaparams: alsaparams.o
-	$(CC) -o $@ alsaparams.o -lasound
+	$(CC) $(LDFLAGS) -o $@ alsaparams.o -lasound
 
 clean:
 	rm -f *.so *.o 
diff --git a/servers/software-dtk/Makefile b/servers/software-dtk/Makefile
index 383592e..1b623bd 100644
--- a/servers/software-dtk/Makefile
+++ b/servers/software-dtk/Makefile
@@ -11,7 +11,7 @@ SERVER_DIR=/usr/share/emacs/site-lisp/emacspeak/servers/software-dtk
 FILES=tcldtk.c tcldtk.so tcldtk.o Makefile
 
 tcldtk.so: tcldtk.o
-	$(CC) -shared -o $@ $< $(LIBS)
+	$(CC) $(LDFLAGS) -shared -o $@ $< $(LIBS)
 
 dist: software-dtk.tar.gz
 
-- 
1.7.2.2




1.1                  app-accessibility/emacspeak/files/emacspeak-33.0-greader-garbage.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/files/emacspeak-33.0-greader-garbage.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/files/emacspeak-33.0-greader-garbage.patch?rev=1.1&content-type=text/plain

Index: emacspeak-33.0-greader-garbage.patch
===================================================================
--- emacspeak-33.0-orig/lisp/g-client/greader.el
+++ emacspeak-33.0/lisp/g-client/greader.el
@@ -704,7 +704,7 @@
 
 (defvar greader-contents-rest-url
   "http://www.google.com/reader/api/0/stream/items/contents"
-  "REST endpoint for getting content.")e
+  "REST endpoint for getting content.")
 
 (defun greader-search-results (query)
   "Return GReader search results."






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

* [gentoo-commits] gentoo-x86 commit in app-accessibility/emacspeak/files: emacspeak-33.0-respect-ldflags.patch emacspeak-33.0-greader-garbage.patch
@ 2014-02-08  7:50 Christopher Brannon (teiresias)
  0 siblings, 0 replies; 2+ messages in thread
From: Christopher Brannon (teiresias) @ 2014-02-08  7:50 UTC (permalink / raw
  To: gentoo-commits

teiresias    14/02/08 07:50:24

  Removed:              emacspeak-33.0-respect-ldflags.patch
                        emacspeak-33.0-greader-garbage.patch
  Log:
  Remove old versions.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x6521e06d)


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

end of thread, other threads:[~2014-02-08  7:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-08  7:50 [gentoo-commits] gentoo-x86 commit in app-accessibility/emacspeak/files: emacspeak-33.0-respect-ldflags.patch emacspeak-33.0-greader-garbage.patch Christopher Brannon (teiresias)
  -- strict thread matches above, loose matches on Subject: below --
2010-12-02 15:31 William Hubbs (williamh)

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