diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2004-11-23 17:47:53 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2004-11-23 17:47:53 +0000 |
commit | 7c768d980e9cdc52d8886038e10e5d2704a23e4c (patch) | |
tree | 1ed305aadf13ec147d259efb86bc4c72e7c0ffad /app-i18n/koffice-i18n/koffice-i18n-1.3.5.ebuild | |
parent | Version bump. (Manifest recommit) (diff) | |
download | gentoo-2-7c768d980e9cdc52d8886038e10e5d2704a23e4c.tar.gz gentoo-2-7c768d980e9cdc52d8886038e10e5d2704a23e4c.tar.bz2 gentoo-2-7c768d980e9cdc52d8886038e10e5d2704a23e4c.zip |
version bump
Diffstat (limited to 'app-i18n/koffice-i18n/koffice-i18n-1.3.5.ebuild')
-rw-r--r-- | app-i18n/koffice-i18n/koffice-i18n-1.3.5.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/app-i18n/koffice-i18n/koffice-i18n-1.3.5.ebuild b/app-i18n/koffice-i18n/koffice-i18n-1.3.5.ebuild new file mode 100644 index 000000000000..d311039ceefe --- /dev/null +++ b/app-i18n/koffice-i18n/koffice-i18n-1.3.5.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.3.5.ebuild,v 1.1 2004/11/23 17:47:53 carlo Exp $ + +inherit kde +need-kde 3 + +DESCRIPTION="KOffice i18n files" +HOMEPAGE="http://www.koffice.org/" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~amd64 ~sparc ~ppc64" +DEPEND="~app-office/koffice-${PV} >=sys-apps/portage-2.0.49-r8" + +IUSE="" +SLOT="0" + +LANGS="af bg br ca cs cy da de el en_GB eo es et fa fi fr he hsb hu it ja lo +mt nb nl nn pl pt pt_BR ru se sk sl sr sv tg th tr ven xh zh_CN zh_TW zu" + +BASEDIR="mirror://kde/stable/koffice-${PV}/src/" + +# Define the LINGUAS environment variable to contain which langauge(s) you +# would like for this ebuild to download and install + +for pkg in $LANGS +do + SRC_URI="$SRC_URI linguas_${pkg}? ( $BASEDIR/koffice-i18n-${pkg}-${PV}.tar.bz2)" +done + +if [ -z "$SRC_URI" ]; then + SRC_URI="$BASEDIR/koffice-i18n-${PV}.tar.bz2" +fi + +src_unpack() { + base_src_unpack unpack +} + +src_compile() { + local _S=${S} + for dir in `ls ${WORKDIR}`; do + S=${WORKDIR}/$dir + kde_src_compile myconf + myconf="$myconf --prefix=$KDEDIR -C" + kde_src_compile configure + kde_src_compile make + done + S=${_S} +} + +src_install() { + local _S=${S} + for dir in `ls ${WORKDIR}`; do + cd ${WORKDIR}/$dir + make install DESTDIR=${D} destdir=${D} + done + S=${_S} +} + |