diff options
author | 2011-04-16 22:25:52 +0000 | |
---|---|---|
committer | 2011-04-16 22:25:52 +0000 | |
commit | 154b68d330d29a9dd159e5323fdb2a43708a5682 (patch) | |
tree | 997a45f1528024abda888ac11bc309fe155d5c17 /app-i18n/sunpinyin/files | |
parent | Fix deprecation warnings. (diff) | |
download | gentoo-2-154b68d330d29a9dd159e5323fdb2a43708a5682.tar.gz gentoo-2-154b68d330d29a9dd159e5323fdb2a43708a5682.tar.bz2 gentoo-2-154b68d330d29a9dd159e5323fdb2a43708a5682.zip |
Delete older ebuilds.
Diffstat (limited to 'app-i18n/sunpinyin/files')
-rw-r--r-- | app-i18n/sunpinyin/files/sunpinyin-2.0.1-mkdir.patch | 12 | ||||
-rw-r--r-- | app-i18n/sunpinyin/files/sunpinyin-2.0.2-ldflags.patch | 55 |
2 files changed, 0 insertions, 67 deletions
diff --git a/app-i18n/sunpinyin/files/sunpinyin-2.0.1-mkdir.patch b/app-i18n/sunpinyin/files/sunpinyin-2.0.1-mkdir.patch deleted file mode 100644 index 71cfcae40324..000000000000 --- a/app-i18n/sunpinyin/files/sunpinyin-2.0.1-mkdir.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur sunpinyin-2.0.orig/wrapper/xim/settings.c sunpinyin-2.0/wrapper/xim/settings.c ---- sunpinyin-2.0.orig/wrapper/xim/settings.c 2010-04-10 20:37:24.000000000 +0900 -+++ sunpinyin-2.0/wrapper/xim/settings.c 2010-05-04 10:16:45.000000000 +0900 -@@ -294,7 +294,7 @@ - if (fp == NULL) { - char config_dir[256]; - snprintf(config_dir, 256, "%s/.sunpinyin", getenv("HOME")); -- mkdir(config_dir, 0600); -+ mkdir(config_dir, 0700); - char cmd[256]; - snprintf(cmd, 256, "cp %s %s", DEFAULT_SETTING_FILE, path); - system(cmd); diff --git a/app-i18n/sunpinyin/files/sunpinyin-2.0.2-ldflags.patch b/app-i18n/sunpinyin/files/sunpinyin-2.0.2-ldflags.patch deleted file mode 100644 index decffa287730..000000000000 --- a/app-i18n/sunpinyin/files/sunpinyin-2.0.2-ldflags.patch +++ /dev/null @@ -1,55 +0,0 @@ -diff -urN sunpinyin/SConstruct sunpinyin-patched/SConstruct ---- sunpinyin/SConstruct 2010-08-15 13:32:48.000000000 +0800 -+++ sunpinyin-patched/SConstruct 2011-01-08 13:54:44.588000007 +0800 -@@ -193,6 +193,10 @@ - conf = Configure(env, custom_tests={'CheckPKGConfig' : CheckPKGConfig, - 'CheckPKG' : CheckPKG}) - -+if 'LDFLAGS' in os.environ: -+ import SCons -+ conf.env.Append(LINKFLAGS = SCons.Util.CLVar(os.environ['LDFLAGS'])) -+ - config_h_content = '' - - def AddConfigItem(macro_name, res): -diff -urN sunpinyin/wrapper/gtk_standalone/SConstruct sunpinyin-patched/wrapper/gtk_standalone/SConstruct ---- sunpinyin/wrapper/gtk_standalone/SConstruct 2010-08-15 13:32:49.000000000 +0800 -+++ sunpinyin-patched/wrapper/gtk_standalone/SConstruct 2011-01-08 13:55:27.696000007 +0800 -@@ -1,6 +1,10 @@ - import os - - env=Environment(ENV=os.environ, CFLAGS='-g', CXXFLAGS='-g') -+if 'LDFLAGS' in os.environ: -+ import SCons -+ env.Append(LINKFLAGS = SCons.Util.CLVar(os.environ['LDFLAGS'])) -+ - env.ParseConfig('pkg-config gtk+-2.0 sunpinyin-2.0 sqlite3 --cflags --libs') - - env.Program('sunpinyin', source=['imi_gtkwin.cpp', 'sunpinyin.cpp']) -diff -urN sunpinyin/wrapper/ibus/SConstruct sunpinyin-patched/wrapper/ibus/SConstruct ---- sunpinyin/wrapper/ibus/SConstruct 2010-08-15 13:32:49.000000000 +0800 -+++ sunpinyin-patched/wrapper/ibus/SConstruct 2011-01-08 13:55:02.292000012 +0800 -@@ -71,6 +71,9 @@ - - conf = Configure(env, custom_tests={'CheckPKGConfig' : CheckPKGConfig, - 'CheckPKG' : CheckPKG }) -+if 'LDFLAGS' in os.environ: -+ import SCons -+ conf.env.Append(LINKFLAGS = SCons.Util.CLVar(os.environ['LDFLAGS'])) - - def DoConfigure(): - if GetOption('clean'): -diff -urN sunpinyin/wrapper/xim/SConstruct sunpinyin-patched/wrapper/xim/SConstruct ---- sunpinyin/wrapper/xim/SConstruct 2010-08-15 13:32:49.000000000 +0800 -+++ sunpinyin-patched/wrapper/xim/SConstruct 2011-01-08 13:55:12.036000010 +0800 -@@ -81,6 +81,10 @@ - - conf = Configure(env, custom_tests={'CheckPKGConfig' : CheckPKGConfig, - 'CheckPKG' : CheckPKG }) -+if 'LDFLAGS' in os.environ: -+ import SCons -+ conf.env.Append(LINKFLAGS = SCons.Util.CLVar(os.environ['LDFLAGS'])) -+ - def DoConfigure(): - if GetOption('clean'): - return |