summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2011-06-01 21:45:36 +0000
committerAndreas K. Hüttel <dilfridge@gentoo.org>2011-06-01 21:45:36 +0000
commitb71719689e9ec966102a8a0430142dc7cdf408c1 (patch)
tree95de259597457fc5fec2170f54868d08f67bf9da /app-office/koffice-l10n
parentRemove old (diff)
downloadgentoo-2-b71719689e9ec966102a8a0430142dc7cdf408c1.tar.gz
gentoo-2-b71719689e9ec966102a8a0430142dc7cdf408c1.tar.bz2
gentoo-2-b71719689e9ec966102a8a0430142dc7cdf408c1.zip
Remove old
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Diffstat (limited to 'app-office/koffice-l10n')
-rw-r--r--app-office/koffice-l10n/ChangeLog6
-rw-r--r--app-office/koffice-l10n/koffice-l10n-2.2.2.ebuild77
2 files changed, 5 insertions, 78 deletions
diff --git a/app-office/koffice-l10n/ChangeLog b/app-office/koffice-l10n/ChangeLog
index e065fc76c9c4..9d3c1cb96ff3 100644
--- a/app-office/koffice-l10n/ChangeLog
+++ b/app-office/koffice-l10n/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-office/koffice-l10n
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-l10n/ChangeLog,v 1.29 2011/05/09 23:12:35 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-l10n/ChangeLog,v 1.30 2011/06/01 21:45:36 dilfridge Exp $
+
+ 01 Jun 2011; Andreas K. Huettel <dilfridge@gentoo.org>
+ -koffice-l10n-2.2.2.ebuild:
+ Remove old
09 May 2011; Markos Chandras <hwoarang@gentoo.org> koffice-l10n-2.3.3.ebuild:
Stable on amd64 wrt bug #354033
diff --git a/app-office/koffice-l10n/koffice-l10n-2.2.2.ebuild b/app-office/koffice-l10n/koffice-l10n-2.2.2.ebuild
deleted file mode 100644
index a2e9b86df4d8..000000000000
--- a/app-office/koffice-l10n/koffice-l10n-2.2.2.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-l10n/koffice-l10n-2.2.2.ebuild,v 1.5 2011/01/28 09:52:41 tampakrap Exp $
-
-EAPI="3"
-
-inherit kde4-base
-
-DESCRIPTION="KOffice localization package"
-HOMEPAGE="http://www.kde.org/"
-LICENSE="GPL-2"
-
-DEPEND="sys-devel/gettext"
-RDEPEND=""
-
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-MY_LANGS="ca da de el en_GB es et fr gl it ja kk nb nds nl pl pt pt_BR
- ru sv tr uk wa zh_CN zh_TW"
-URI_BASE="mirror://kde/stable/koffice-${PV}/${PN}/"
-SRC_URI=""
-SLOT="2"
-
-for MY_LANG in ${MY_LANGS} ; do
- IUSE="${IUSE} linguas_${MY_LANG}"
- SRC_URI="${SRC_URI} linguas_${MY_LANG}? ( ${URI_BASE}/${PN}-${MY_LANG}-${PV}.tar.bz2 )"
-done
-
-S="${WORKDIR}"
-
-src_unpack() {
- local lng dir
- if [[ -z ${A} ]]; then
- elog
- elog "You either have the LINGUAS variable unset, or it only"
- elog "contains languages not supported by ${P}."
- elog "You won't have any additional language support."
- elog
- elog "${P} supports these language codes:"
- elog "${MY_LANGS}"
- elog
- fi
-
- [[ -n ${A} ]] && unpack ${A}
- cd "${S}"
-
- # add all linguas to cmake
- if [[ -n ${A} ]]; then
- for lng in ${MY_LANGS}; do
- dir="${PN}-${lng}-${PV}"
- if [[ -d "${dir}" ]] ; then
- echo "add_subdirectory( ${dir} )" >> "${S}"/CMakeLists.txt
- fi
- done
- fi
-}
-
-src_configure() {
- local mycmakeargs
-
- mycmakeargs="${mycmakeargs} -DBUILD_MESSAGES=ON -DBUILD_DATA=ON
- $(cmake-utils_use_build doc)"
- [[ -e "${S}"/CMakeLists.txt ]] && kde4-base_src_configure
-}
-
-src_compile() {
- [[ -e "${S}"/CMakeLists.txt ]] && kde4-base_src_compile
-}
-
-src_test() {
- [[ -e "${S}"/CMakeLists.txt ]] && kde4-base_src_test
-}
-
-src_install() {
- [[ -e "${S}"/CMakeLists.txt ]] && kde4-base_src_install
-}