- enable CHARSET option (iconv replacement)
- cosmetics
- install iconvdata and locale-bin
This commit is contained in:
Stephan Raue 2010-04-10 05:10:25 +02:00
parent e5e081e011
commit 6187466085
2 changed files with 12 additions and 4 deletions

View File

@ -41,13 +41,13 @@ EOF
# needed by glib: OPTION_EGLIBC_LOCALE_CODE = y # needed by glib: OPTION_EGLIBC_LOCALE_CODE = y
# needed by PAM: OPTION_EGLIBC_GETLOGIN = y # needed by PAM: OPTION_EGLIBC_GETLOGIN = y
# needed by PAM: OPTION_EGLIBC_UTMP = y # needed by PAM: OPTION_EGLIBC_UTMP = y
# libiconv replacement: OPTION_EGLIBC_CHARSETS = y
cat >options-groups.conf <<EOF cat >options-groups.conf <<EOF
OPTION_EGLIBC_ADVANCED_INET6 = n OPTION_EGLIBC_ADVANCED_INET6 = n
OPTION_EGLIBC_BIG_MACROS = n OPTION_EGLIBC_BIG_MACROS = n
OPTION_EGLIBC_BSD = n OPTION_EGLIBC_BSD = n
OPTION_EGLIBC_CATGETS = n OPTION_EGLIBC_CATGETS = n
OPTION_EGLIBC_CHARSETS = n
OPTION_EGLIBC_DB_ALIASES = n OPTION_EGLIBC_DB_ALIASES = n
OPTION_EGLIBC_LOCALES = n OPTION_EGLIBC_LOCALES = n
OPTION_EGLIBC_NIS = n OPTION_EGLIBC_NIS = n

View File

@ -39,4 +39,12 @@ mkdir -p $INSTALL/bin
sed -i 's%bash%sh%g' $INSTALL/bin/ldd sed -i 's%bash%sh%g' $INSTALL/bin/ldd
fi fi
cp -P $PKG_BUILD/objdir-$1/locale/locale $INSTALL/bin
mkdir -p $INSTALL/usr/lib/gconv
cp -P $PKG_BUILD/iconvdata/gconv-modules $INSTALL/usr/lib/gconv
# didn't yet find a way to separate only needed modules.
# the way they are used is described within gconv-modules though
cp -P $PKG_BUILD/objdir-$1/iconvdata/*.so $INSTALL/usr/lib/gconv
exit 0 exit 0