summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2017-08-17 00:09:46 +0900
committerAkinori Hattori <hattya@gentoo.org>2017-08-17 00:09:46 +0900
commit917677d9d8aaacdca46f0db9ac3ea9aee72c6198 (patch)
treeb225fa0af570765badf8c28c9405a33d84e7ccac /app-i18n/libchewing/files
parentapp-i18n/libchewing: update to EAPI 6 (diff)
downloadgentoo-917677d9d8aaacdca46f0db9ac3ea9aee72c6198.tar.gz
gentoo-917677d9d8aaacdca46f0db9ac3ea9aee72c6198.tar.bz2
gentoo-917677d9d8aaacdca46f0db9ac3ea9aee72c6198.zip
app-i18n/libchewing: drop old
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-i18n/libchewing/files')
-rw-r--r--app-i18n/libchewing/files/0.3.3-cflags.patch10
-rw-r--r--app-i18n/libchewing/files/0.3.3-tinfo.patch43
2 files changed, 0 insertions, 53 deletions
diff --git a/app-i18n/libchewing/files/0.3.3-cflags.patch b/app-i18n/libchewing/files/0.3.3-cflags.patch
deleted file mode 100644
index dba1093c5ae6..000000000000
--- a/app-i18n/libchewing/files/0.3.3-cflags.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -153,7 +122,6 @@
- if test x$LIBDEBUG = x"true"; then
- AC_DEFINE(ENABLE_DEBUG, 1,
- [Define to 1 if you want native library runtime debugging code enabled])
-- CFLAGS="$CFLAGS -g"
- fi
- AC_SUBST(LIBDEBUG)
-
diff --git a/app-i18n/libchewing/files/0.3.3-tinfo.patch b/app-i18n/libchewing/files/0.3.3-tinfo.patch
deleted file mode 100644
index 10692e72c8ed..000000000000
--- a/app-i18n/libchewing/files/0.3.3-tinfo.patch
+++ /dev/null
@@ -1,43 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -91,38 +91,8 @@
- AM_CONDITIONAL(ENABLE_UNIT_TEST, test x$enable_check = "xyes")
-
- # Checks for ncursesw
--OLDCFLAGS=$CFLAGS
--LIB_NAME=ncursesw
--NCURSESW_CFLAGS=
--NCURSESW_LIBS=
--for p in "$HOME/include" "$prefix/include" /usr/local/include /usr/include
--do
-- if test -f "$p/ncursesw/ncurses.h"
-- then
-- NCURSESW_CFLAGS="-I$p"
-- AC_DEFINE(HAVE_NCURSESW_NCURSES_H, 1, [ Define to 1 if you have the <ncursesw/ncurses.h> header file. ])
-- break
-- elif test -f "$p/ncurses/ncurses.h"
-- then
-- NCURSESW_CFLAGS="-I$p"
-- AC_DEFINE(HAVE_NCURSES_NCURSES_H, 1, [ Define to 1 if you have the <ncurses/ncurses.h> header file. ])
-- break
-- fi
--done
--
--for p in "$HOME/lib" "$prefix/lib" /usr/local/lib /usr/lib
--do
-- if test -f "$p/libncursesw.so"
-- then
-- if test "$p" != x/usr/lib
-- then
-- NCURSESW_LIBS="-L$p -lncursesw"
-- else
-- NCURSESW_LIBS="-lncursesw"
-- fi
-- break
-- fi
--done
-+PKG_CHECK_MODULES(NCURSESW,ncursesw,
-+ AC_DEFINE(HAVE_NCURSESW_NCURSES_H, 1, [ Define to 1 if you have the <ncursesw/ncurses.h> header file. ]),)
-
- enable_ncursesw=yes
- if test -z "$NCURSESW_CFLAGS"; then