public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-text/hunspell/files: hunspell-1.3.2-static-lib.patch
@ 2011-09-15 10:30 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 3+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-09-15 10:30 UTC (permalink / raw
  To: gentoo-commits

scarabeus    11/09/15 10:30:20

  Added:                hunspell-1.3.2-static-lib.patch
  Log:
  Revision bump in order to fix static lib usage.
  
  (Portage version: 2.2.0_alpha58/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  app-text/hunspell/files/hunspell-1.3.2-static-lib.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hunspell/files/hunspell-1.3.2-static-lib.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hunspell/files/hunspell-1.3.2-static-lib.patch?rev=1.1&content-type=text/plain

Index: hunspell-1.3.2-static-lib.patch
===================================================================
diff -urN hunspell-1.3.2.old/src/parsers/Makefile.am hunspell-1.3.2/src/parsers/Makefile.am
--- hunspell-1.3.2.old/src/parsers/Makefile.am	2011-09-15 11:50:40.251441126 +0200
+++ hunspell-1.3.2/src/parsers/Makefile.am	2011-09-15 12:14:25.891424029 +0200
@@ -1,10 +1,12 @@
-lib_LIBRARIES=libparsers.a
-libparsers_a_SOURCES=firstparser.cxx htmlparser.cxx \
-		      latexparser.cxx  manparser.cxx \
-		      textparser.cxx 
+lib_LTLIBRARIES=libparsers.la
+libparsers_la_SOURCES=firstparser.cxx firstparser.hxx \
+	htmlparser.cxx htmlparser.hxx \
+	latexparser.cxx latexparser.hxx \
+	manparser.cxx manparser.hxx \
+	textparser.cxx textparser.hxx
+libparsers_la_LIBADD=../hunspell/libhunspell-1.3.la
+libparsers_la_LDFLAGS=-no-undefined
 
-noinst_PROGRAMS=testparser
-testparser_SOURCES=firstparser.cxx firstparser.hxx htmlparser.cxx htmlparser.hxx latexparser.cxx latexparser.hxx manparser.cxx manparser.hxx testparser.cxx textparser.cxx textparser.hxx
-
-# need mystrdup()
-LDADD = ../hunspell/libhunspell-1.3.la
+check_PROGRAMS=testparser
+testparser_SOURCES=testparser.cxx
+testparser_LDADD=libparsers.la ../hunspell/libhunspell-1.3.la
diff -urN hunspell-1.3.2.old/src/tools/Makefile.am hunspell-1.3.2/src/tools/Makefile.am
--- hunspell-1.3.2.old/src/tools/Makefile.am	2011-09-15 11:50:40.251441126 +0200
+++ hunspell-1.3.2/src/tools/Makefile.am	2011-09-15 12:08:46.081428111 +0200
@@ -13,14 +13,14 @@
 example_LDADD = ../hunspell/libhunspell-1.3.la
 
 hunspell_SOURCES=hunspell.cxx
-hunspell_LDADD = @LIBINTL@ @LIBICONV@ ../parsers/libparsers.a \
+hunspell_LDADD = @LIBINTL@ @LIBICONV@ ../parsers/libparsers.la \
 	../hunspell/libhunspell-1.3.la @CURSESLIB@ @READLINELIB@
 
 hunspell_analyze_SOURCES=analyze.cxx
 hunspell_analyze_LDADD = ../hunspell/libhunspell-1.3.la
 
 hunspell_chmorph_SOURCES=chmorph.cxx
-hunspell_chmorph_LDADD = ../parsers/libparsers.a ../hunspell/libhunspell-1.3.la
+hunspell_chmorph_LDADD = ../parsers/libparsers.la ../hunspell/libhunspell-1.3.la
 
 noinst_PROGRAMS=example
 






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

* [gentoo-commits] gentoo-x86 commit in app-text/hunspell/files: hunspell-1.3.2-static-lib.patch
@ 2011-09-17  4:08 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 3+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-09-17  4:08 UTC (permalink / raw
  To: gentoo-commits

scarabeus    11/09/17 04:08:53

  Modified:             hunspell-1.3.2-static-lib.patch
  Log:
  Revision bump again, after discussion rather do not make the libparsers shared but not installed.
  
  (Portage version: 2.2.0_alpha58/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  app-text/hunspell/files/hunspell-1.3.2-static-lib.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hunspell/files/hunspell-1.3.2-static-lib.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hunspell/files/hunspell-1.3.2-static-lib.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/hunspell/files/hunspell-1.3.2-static-lib.patch?r1=1.1&r2=1.2

Index: hunspell-1.3.2-static-lib.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/hunspell/files/hunspell-1.3.2-static-lib.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hunspell-1.3.2-static-lib.patch	15 Sep 2011 10:30:20 -0000	1.1
+++ hunspell-1.3.2-static-lib.patch	17 Sep 2011 04:08:53 -0000	1.2
@@ -1,45 +1,9 @@
 diff -urN hunspell-1.3.2.old/src/parsers/Makefile.am hunspell-1.3.2/src/parsers/Makefile.am
 --- hunspell-1.3.2.old/src/parsers/Makefile.am	2011-09-15 11:50:40.251441126 +0200
-+++ hunspell-1.3.2/src/parsers/Makefile.am	2011-09-15 12:14:25.891424029 +0200
-@@ -1,10 +1,12 @@
++++ hunspell-1.3.2/src/parsers/Makefile.am	2011-09-17 06:06:50.469615528 +0200
+@@ -1,4 +1,4 @@
 -lib_LIBRARIES=libparsers.a
--libparsers_a_SOURCES=firstparser.cxx htmlparser.cxx \
--		      latexparser.cxx  manparser.cxx \
--		      textparser.cxx 
-+lib_LTLIBRARIES=libparsers.la
-+libparsers_la_SOURCES=firstparser.cxx firstparser.hxx \
-+	htmlparser.cxx htmlparser.hxx \
-+	latexparser.cxx latexparser.hxx \
-+	manparser.cxx manparser.hxx \
-+	textparser.cxx textparser.hxx
-+libparsers_la_LIBADD=../hunspell/libhunspell-1.3.la
-+libparsers_la_LDFLAGS=-no-undefined
- 
--noinst_PROGRAMS=testparser
--testparser_SOURCES=firstparser.cxx firstparser.hxx htmlparser.cxx htmlparser.hxx latexparser.cxx latexparser.hxx manparser.cxx manparser.hxx testparser.cxx textparser.cxx textparser.hxx
--
--# need mystrdup()
--LDADD = ../hunspell/libhunspell-1.3.la
-+check_PROGRAMS=testparser
-+testparser_SOURCES=testparser.cxx
-+testparser_LDADD=libparsers.la ../hunspell/libhunspell-1.3.la
-diff -urN hunspell-1.3.2.old/src/tools/Makefile.am hunspell-1.3.2/src/tools/Makefile.am
---- hunspell-1.3.2.old/src/tools/Makefile.am	2011-09-15 11:50:40.251441126 +0200
-+++ hunspell-1.3.2/src/tools/Makefile.am	2011-09-15 12:08:46.081428111 +0200
-@@ -13,14 +13,14 @@
- example_LDADD = ../hunspell/libhunspell-1.3.la
- 
- hunspell_SOURCES=hunspell.cxx
--hunspell_LDADD = @LIBINTL@ @LIBICONV@ ../parsers/libparsers.a \
-+hunspell_LDADD = @LIBINTL@ @LIBICONV@ ../parsers/libparsers.la \
- 	../hunspell/libhunspell-1.3.la @CURSESLIB@ @READLINELIB@
- 
- hunspell_analyze_SOURCES=analyze.cxx
- hunspell_analyze_LDADD = ../hunspell/libhunspell-1.3.la
- 
- hunspell_chmorph_SOURCES=chmorph.cxx
--hunspell_chmorph_LDADD = ../parsers/libparsers.a ../hunspell/libhunspell-1.3.la
-+hunspell_chmorph_LDADD = ../parsers/libparsers.la ../hunspell/libhunspell-1.3.la
- 
- noinst_PROGRAMS=example
- 
++noinst_LIBRARIES=libparsers.a
+ libparsers_a_SOURCES=firstparser.cxx htmlparser.cxx \
+ 		      latexparser.cxx  manparser.cxx \
+ 		      textparser.cxx 






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

* [gentoo-commits] gentoo-x86 commit in app-text/hunspell/files: hunspell-1.3.2-static-lib.patch
@ 2015-02-28 13:59 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 3+ messages in thread
From: Manuel Rueger (mrueg) @ 2015-02-28 13:59 UTC (permalink / raw
  To: gentoo-commits

mrueg       15/02/28 13:59:06

  Removed:              hunspell-1.3.2-static-lib.patch
  Log:
  Remove old.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key )


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

end of thread, other threads:[~2015-02-28 13:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-17  4:08 [gentoo-commits] gentoo-x86 commit in app-text/hunspell/files: hunspell-1.3.2-static-lib.patch Tomas Chvatal (scarabeus)
  -- strict thread matches above, loose matches on Subject: below --
2015-02-28 13:59 Manuel Rueger (mrueg)
2011-09-15 10:30 Tomas Chvatal (scarabeus)

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