diff options
author | 2007-10-19 22:09:07 +0000 | |
---|---|---|
committer | 2007-10-19 22:09:07 +0000 | |
commit | 9d51b7de6ea8685a3173025a54bbb20b756d29e6 (patch) | |
tree | 72e37bc36a810bd5d412852c841c69914043e869 /kde-base/kde-i18n/kde-i18n-3.5.8.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-9d51b7de6ea8685a3173025a54bbb20b756d29e6.tar.gz gentoo-2-9d51b7de6ea8685a3173025a54bbb20b756d29e6.tar.bz2 gentoo-2-9d51b7de6ea8685a3173025a54bbb20b756d29e6.zip |
Bump to KDE 3.5.8.
(Portage version: 2.1.3.15)
Diffstat (limited to 'kde-base/kde-i18n/kde-i18n-3.5.8.ebuild')
-rw-r--r-- | kde-base/kde-i18n/kde-i18n-3.5.8.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/kde-base/kde-i18n/kde-i18n-3.5.8.ebuild b/kde-base/kde-i18n/kde-i18n-3.5.8.ebuild new file mode 100644 index 000000000000..dfcf06c1bde6 --- /dev/null +++ b/kde-base/kde-i18n/kde-i18n-3.5.8.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-i18n/kde-i18n-3.5.8.ebuild,v 1.1 2007/10/19 22:09:07 philantrop Exp $ + +inherit kde eutils + +DESCRIPTION="KDE internationalization package" +HOMEPAGE="http://www.kde.org/" +LICENSE="GPL-2" + +SLOT="${KDEMAJORVER}.${KDEMINORVER}" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +need-kde ${PV} +LANGS="af ar az bg bn br bs ca cs csb cy da de el en_GB eo es et +eu fa fi fr fy ga gl he hi hr hu is it ja kk km ko lt lv mk +mn ms nb nds nl nn pa pl pt pt_BR ro ru rw se sk sl sr +sr@Latn ss sv ta te tg th tr uk uz vi wa zh_CN zh_TW" + +for X in ${LANGS} ; do + SRC_URI="${SRC_URI} linguas_${X}? ( mirror://kde/stable/${PV}/src/kde-i18n/kde-i18n-${X}-${PV}.tar.bz2 )" + IUSE="${IUSE} linguas_${X}" +done + +src_unpack() { + if [[ -z "${LINGUAS}" ]] || [[ -z "${A}" && "${LINGUAS}" != "en" ]]; then + echo + ewarn "You either have the LINGUAS environment variable unset or it" + ewarn "contains languages not supported by kde-base/kde-i18n." + ewarn "Because of that, kde-i18n will not add any kind of language" + ewarn "support." + ewarn + ewarn "If you didn't intend this to happen, the available language" + ewarn "codes are:" + ewarn "${LANGS}" + echo + fi + + # Override kde_src_unpack. + [[ -n ${A} ]] && unpack ${A} + + # Work around KDE bug 126311. + for dir in $(ls "${WORKDIR}"); do + lang=$(echo ${dir} | cut -f3 -d-) + + [[ -e "${WORKDIR}/${dir}/docs/common/Makefile.in" ]] || continue + sed -e "s:\$(KDE_LANG)/${lang}/:\$(KDE_LANG)/:g" \ + -i "${WORKDIR}/${dir}/docs/common/Makefile.in" || die "Failed to fix ${lang}." + done + + use linguas_fa && epatch "${FILESDIR}/${P}-farsi.patch" + use linguas_ko && epatch "${FILESDIR}/${P}-korean.patch" +} + +src_compile() { + for dir in $(ls "${WORKDIR}"); do + KDE_S="${WORKDIR}/${dir}" + kde_src_compile myconf + myconf="${myconf} --prefix=${KDEDIR}" + kde_src_compile configure + kde_src_compile make + done +} + +src_install() { + for dir in $(ls "${WORKDIR}"); do + cd "${WORKDIR}/${dir}" + emake DESTDIR="${D}" install || die + done +} |