* [gentoo-commits] gentoo-x86 commit in app-i18n/xcin/files: xcin-2.5.3_pre3-ldflags.patch xcin-2.5.3_pre3-make.patch
@ 2011-11-20 23:40 Matsuu Takuto (matsuu)
0 siblings, 0 replies; only message in thread
From: Matsuu Takuto (matsuu) @ 2011-11-20 23:40 UTC (permalink / raw
To: gentoo-commits
matsuu 11/11/20 23:40:31
Added: xcin-2.5.3_pre3-ldflags.patch
xcin-2.5.3_pre3-make.patch
Log:
Fixed dodoc issue, bug #374811. Respect LDFLAGS, bug #334849. Clean up.
(Portage version: 2.1.10.29/cvs/Linux x86_64)
Revision Changes Path
1.1 app-i18n/xcin/files/xcin-2.5.3_pre3-ldflags.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/xcin/files/xcin-2.5.3_pre3-ldflags.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/xcin/files/xcin-2.5.3_pre3-ldflags.patch?rev=1.1&content-type=text/plain
Index: xcin-2.5.3_pre3-ldflags.patch
===================================================================
diff -Naur xcin-2.5.2.99.pre2+cvs20030224.orig/src/Cinput/bimsphone/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/src/Cinput/bimsphone/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/src/Cinput/bimsphone/Makefile.in 2001-11-11 21:50:46.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/src/Cinput/bimsphone/Makefile.in 2011-11-21 01:08:21.736965412 +0900
@@ -15,7 +15,7 @@
$(TARGET): $(OBJ)
$(LIBTOOL) --mode=link $(CC) -module -avoid-version -o $(TARGET) \
- $(OBJ) $(LIB) -rpath $(moddir)
+ $(OBJ) $(LDFLAGS) $(LIB) -rpath $(moddir)
include .depend
depend:
diff -Naur xcin-2.5.2.99.pre2+cvs20030224.orig/src/Cinput/chewing/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/src/Cinput/chewing/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/src/Cinput/chewing/Makefile.in 2011-11-21 01:07:12.878761904 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/src/Cinput/chewing/Makefile.in 2011-11-21 08:32:24.024474064 +0900
@@ -21,7 +21,7 @@
$(TARGET): $(OBJ)
$(LIBTOOL) --mode=link $(CC) -module -avoid-version -o $(TARGET) \
- $(OBJ) $(LIB) -rpath $(moddir)
+ $(OBJ) $(LDFLAGS) $(LIB) -rpath $(moddir)
include .depend
sort_word: sort_word.c key2pho.c
diff -Naur xcin-2.5.2.99.pre2+cvs20030224.orig/src/Cinput/gen_inp/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/src/Cinput/gen_inp/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/src/Cinput/gen_inp/Makefile.in 2001-11-11 21:50:46.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/src/Cinput/gen_inp/Makefile.in 2011-11-21 01:08:21.736965412 +0900
@@ -15,7 +15,7 @@
$(TARGET): $(OBJ)
$(LIBTOOL) --mode=link $(CC) -module -avoid-version -o $(TARGET) \
- $(OBJ) $(LIB) -rpath $(moddir)
+ $(OBJ) $(LDFLAGS) $(LIB) -rpath $(moddir)
include .depend
depend:
diff -Naur xcin-2.5.2.99.pre2+cvs20030224.orig/src/Cinput/zh_hex/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/src/Cinput/zh_hex/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/src/Cinput/zh_hex/Makefile.in 2001-11-11 21:50:47.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/src/Cinput/zh_hex/Makefile.in 2011-11-21 01:08:21.736965412 +0900
@@ -14,7 +14,7 @@
$(TARGET): $(OBJ)
$(LIBTOOL) --mode=link $(CC) -module -avoid-version -o $(TARGET) \
- $(OBJ) -rpath $(moddir)
+ $(OBJ) $(LDFLAGS) -rpath $(moddir)
include .depend
depend:
diff -Naur xcin-2.5.2.99.pre2+cvs20030224.orig/src/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/src/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/src/Makefile.in 2001-11-05 01:47:26.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/src/Makefile.in 2011-11-21 01:08:53.576059606 +0900
@@ -26,7 +26,7 @@
$(BIN): subsys $(OBJ)
@$(LIBTOOL) --mode=link $(CC) $(CFLAGS) -export-dynamic \
- $(INC) $(DEFS) -o $(BIN) $(OBJ) $(LIB)
+ $(INC) $(DEFS) -o $(BIN) $(OBJ) $(LDFLAGS) $(LIB)
include .depend
subsys:
diff -Naur xcin-2.5.2.99.pre2+cvs20030224.orig/src/lib/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/src/lib/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/src/lib/Makefile.in 2001-09-21 02:00:57.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/src/lib/Makefile.in 2011-11-21 01:08:21.736965412 +0900
@@ -23,7 +23,7 @@
$(LXCIN_NAME): make_subdir
( OBJS=`ls $(LXCIN_OBJ)`; \
- $(LIBTOOL) --mode=link $(CC) -o $@ $$OBJS $(LIB) -rpath $(libdir) \
+ $(LIBTOOL) --mode=link $(CC) -o $@ $$OBJS $(LDFLAGS) $(LIB) -rpath $(libdir) \
-version-info $(CURRENT_VER):$(REVISION_VER):$(AGE_VER) )
make_subdir:
diff -Naur xcin-2.5.2.99.pre2+cvs20030224.orig/src/util/cin2tab/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/src/util/cin2tab/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/src/util/cin2tab/Makefile.in 2001-11-05 01:47:29.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/src/util/cin2tab/Makefile.in 2011-11-21 01:08:21.736965412 +0900
@@ -14,7 +14,7 @@
all: $(BIN)
$(BIN): $(OBJ)
- $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(INC) $(DEFS) -o $(BIN) $(OBJ) $(LIB)
+ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(INC) $(DEFS) -o $(BIN) $(OBJ) $(LDFLAGS) $(LIB)
include .depend
depend:
diff -Naur xcin-2.5.2.99.pre2+cvs20030224.orig/src/util/testprog/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/src/util/testprog/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/src/util/testprog/Makefile.in 2002-01-01 22:49:17.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/src/util/testprog/Makefile.in 2011-11-21 08:33:44.547672718 +0900
@@ -15,7 +15,7 @@
all: $(BIN)
$(BIN): $(OBJ)
- $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJ) $(LIB)
+ $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJ) $(LDFLAGS) $(LIB)
include .depend
depend:
1.1 app-i18n/xcin/files/xcin-2.5.3_pre3-make.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/xcin/files/xcin-2.5.3_pre3-make.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/xcin/files/xcin-2.5.3_pre3-make.patch?rev=1.1&content-type=text/plain
Index: xcin-2.5.3_pre3-make.patch
===================================================================
diff -ur xcin-2.5.2.99.pre2+cvs20030224.orig/cin/big5/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/cin/big5/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/cin/big5/Makefile.in 2001-09-07 00:41:32.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/cin/big5/Makefile.in 2011-11-21 00:44:20.979695505 +0900
@@ -9,43 +9,43 @@
all: all-$(OS_TYPE)
all-LINUX:
- ( BIG5ENC=big5 BIG5HKENC=big5hkscs make -f Rules make-big5 make-big5hkscs )
+ ( BIG5ENC=big5 BIG5HKENC=big5hkscs $(MAKE) -f Rules make-big5 make-big5hkscs )
all-FREEBSD:
- ( BIG5ENC=big5 make -f Rules make-big5 )
+ ( BIG5ENC=big5 $(MAKE) -f Rules make-big5 )
all-OPENBSD:
- ( BIG5ENC=big5 make -f Rules make-big5 )
+ ( BIG5ENC=big5 $(MAKE) -f Rules make-big5 )
all-NETBSD:
- ( BIG5ENC=big5 make -f Rules make-big5 )
+ ( BIG5ENC=big5 $(MAKE) -f Rules make-big5 )
all-HPUX:
- ( BIG5ENC=big5 BIG5HKENC=hkbig5 make -f Rules make-big5 make-big5hkscs )
+ ( BIG5ENC=big5 BIG5HKENC=hkbig5 $(MAKE) -f Rules make-big5 make-big5hkscs )
all-SOLARIS:
- ( BIG5ENC=big5 make -f Rules make-big5 )
+ ( BIG5ENC=big5 $(MAKE) -f Rules make-big5 )
install: all install-$(OS_TYPE)
install-LINUX:
- ( BIG5ENC=big5 BIG5HKENC=big5hkscs make -f Rules install_big5 install_big5hkscs )
+ ( BIG5ENC=big5 BIG5HKENC=big5hkscs $(MAKE) -f Rules install_big5 install_big5hkscs )
install-FREEBSD:
- ( BIG5ENC=big5 make -f Rules install_big5 )
+ ( BIG5ENC=big5 $(MAKE) -f Rules install_big5 )
install-OPENBSD:
- ( BIG5ENC=big5 make -f Rules install_big5 )
+ ( BIG5ENC=big5 $(MAKE) -f Rules install_big5 )
install-NETBSD:
- ( BIG5ENC=big5 make -f Rules install_big5 )
+ ( BIG5ENC=big5 $(MAKE) -f Rules install_big5 )
install-HPUX:
- ( BIG5ENC=big5 BIG5HKENC=hkbig5 make -f Rules install_big5 install_big5hkscs )
+ ( BIG5ENC=big5 BIG5HKENC=hkbig5 $(MAKE) -f Rules install_big5 install_big5hkscs )
install-SOLARIS:
- ( BIG5ENC=big5 make -f Rules install_big5 )
+ ( BIG5ENC=big5 $(MAKE) -f Rules install_big5 )
clean:
diff -ur xcin-2.5.2.99.pre2+cvs20030224.orig/cin/gb/Makefile.in xcin-2.5.2.99.pre2+cvs20030224/cin/gb/Makefile.in
--- xcin-2.5.2.99.pre2+cvs20030224.orig/cin/gb/Makefile.in 2001-09-07 00:41:33.000000000 +0900
+++ xcin-2.5.2.99.pre2+cvs20030224/cin/gb/Makefile.in 2011-11-21 00:44:07.491653510 +0900
@@ -9,43 +9,43 @@
all: all-$(OS_TYPE)
all-LINUX:
- ( GB2312ENC=gb2312 GBKENC=gbk make -f Rules make-gb2312 make-gbk )
+ ( GB2312ENC=gb2312 GBKENC=gbk $(MAKE) -f Rules make-gb2312 make-gbk )
all-FREEBSD:
- ( GB2312ENC=euc make -f Rules make-gb2312 )
+ ( GB2312ENC=euc $(MAKE) -f Rules make-gb2312 )
all-OPENBSD:
- ( GB2312ENC=euc make -f Rules make-gb2312 )
+ ( GB2312ENC=euc $(MAKE) -f Rules make-gb2312 )
all-NETBSD:
- ( GB2312ENC=euccn make -f Rules make-gb2312 )
+ ( GB2312ENC=euccn $(MAKE) -f Rules make-gb2312 )
all-HPUX:
- ( GB2312ENC=hp15cn make -f Rules make-gb2312 )
+ ( GB2312ENC=hp15cn $(MAKE) -f Rules make-gb2312 )
all-SOLARIS:
- ( GB2312ENC=euc make -f Rules make-gb2312 )
+ ( GB2312ENC=euc $(MAKE) -f Rules make-gb2312 )
install: all install-$(OS_TYPE)
install-LINUX:
- ( GB2312ENC=gb2312 GBKENC=gbk make -f Rules install_gb2312 install_gbk )
+ ( GB2312ENC=gb2312 GBKENC=gbk $(MAKE) -f Rules install_gb2312 install_gbk )
install-FREEBSD:
- ( GB2312ENC=euc make -f Rules install_gb2312 )
+ ( GB2312ENC=euc $(MAKE) -f Rules install_gb2312 )
install-OPENBSD:
- ( GB2312ENC=euc make -f Rules install_gb2312 )
+ ( GB2312ENC=euc $(MAKE) -f Rules install_gb2312 )
install-NETBSD:
- ( GB2312ENC=euccn make -f Rules install_gb2312 )
+ ( GB2312ENC=euccn $(MAKE) -f Rules install_gb2312 )
install-HPUX:
- ( GB2312ENC=hp15cn make -f Rules install_gb2312 )
+ ( GB2312ENC=hp15cn $(MAKE) -f Rules install_gb2312 )
install-SOLARIS:
- ( GB2312ENC=euc make -f Rules install_gb2312 )
+ ( GB2312ENC=euc $(MAKE) -f Rules install_gb2312 )
clean:
rm -f *.tab* core
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-11-20 23:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-20 23:40 [gentoo-commits] gentoo-x86 commit in app-i18n/xcin/files: xcin-2.5.3_pre3-ldflags.patch xcin-2.5.3_pre3-make.patch Matsuu Takuto (matsuu)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox