diff options
author | Tobias Heinlein <keytoaster@gentoo.org> | 2008-06-09 15:11:20 +0000 |
---|---|---|
committer | Tobias Heinlein <keytoaster@gentoo.org> | 2008-06-09 15:11:20 +0000 |
commit | 03a4623d2e12f1242f774de3b064125337a2f6c7 (patch) | |
tree | 14802d9bdd4da32cc075a83352782dbbe57633dd | |
parent | Removed old versions. (diff) | |
download | gentoo-2-03a4623d2e12f1242f774de3b064125337a2f6c7.tar.gz gentoo-2-03a4623d2e12f1242f774de3b064125337a2f6c7.tar.bz2 gentoo-2-03a4623d2e12f1242f774de3b064125337a2f6c7.zip |
Removed old versions.
(Portage version: 2.2_pre7-r1/cvs/Linux 2.6.25-gentoo-r4 AMD Athlon(tm) 64 X2 Dual Core Processor 4200+)
-rw-r--r-- | kde-base/kde-l10n/ChangeLog | 6 | ||||
-rw-r--r-- | kde-base/kde-l10n/kde-l10n-4.0.2.ebuild | 63 | ||||
-rw-r--r-- | kde-base/kde-l10n/kde-l10n-4.0.3.ebuild | 64 |
3 files changed, 5 insertions, 128 deletions
diff --git a/kde-base/kde-l10n/ChangeLog b/kde-base/kde-l10n/ChangeLog index 976af80521e3..608401e58b9d 100644 --- a/kde-base/kde-l10n/ChangeLog +++ b/kde-base/kde-l10n/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-base/kde-l10n # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.9 2008/06/05 21:16:23 keytoaster Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/ChangeLog,v 1.10 2008/06/09 15:11:20 keytoaster Exp $ + + 09 Jun 2008; Tobias Heinlein <keytoaster@gentoo.org> + -kde-l10n-4.0.2.ebuild, -kde-l10n-4.0.3.ebuild: + Removed old versions. *kde-l10n-4.0.5 (05 Jun 2008) diff --git a/kde-base/kde-l10n/kde-l10n-4.0.2.ebuild b/kde-base/kde-l10n/kde-l10n-4.0.2.ebuild deleted file mode 100644 index cc2403acacb3..000000000000 --- a/kde-base/kde-l10n/kde-l10n-4.0.2.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.0.2.ebuild,v 1.1 2008/03/10 23:26:33 philantrop Exp $ - -EAPI="1" - -inherit kde4-base - -DESCRIPTION="KDE internationalization package" -HOMEPAGE="http://www.kde.org/" -LICENSE="GPL-2" - -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=">=sys-devel/gettext-0.15" -RDEPEND="" - -LANGS="ar be bg ca cs csb da de el en_GB eo es et eu fi fr fy ga gl hi hu it ja -kk km ko lv mk nb nds ne nl nn pa pl pt pt_BR ru se sl sv th tr uk wa zh_CN zh_TW" - -URI_BASE="${SRC_URI/-${PV}.tar.bz2/}" -SRC_URI="" - -for X in ${LANGS} ; do - IUSE="${IUSE} linguas_${X}" - SRC_URI="${SRC_URI} linguas_${X}? ( ${URI_BASE}/${PN}-${X}-${PV}.tar.bz2 )" -done - -S="${WORKDIR}" - -src_unpack() { - if [[ -z ${A} ]]; then - echo - ewarn "You either have the LINGUAS variable unset, or it only" - ewarn "contains languages not supported by ${P}." - ewarn "You won't have any additional language support." - echo - ewarn "${P} supports these language codes:" - ewarn "${LANGS}" - echo - fi - - [[ -n ${A} ]] && unpack ${A} - cd "${S}" - - # Create a top-level CMakeLists.txt to include the selected LINGUAS as sub-directories of ${S} - for dir in * ; do - [[ -d ${dir} ]] && echo "add_subdirectory( ${dir} )" >> "${S}"/CMakeLists.txt - done -} - -src_compile() { - if [[ -n ${A} ]]; then - kde4-base_src_compile - fi -} - -src_install() { - if [[ -n ${A} ]]; then - kde4-base_src_install - fi -} diff --git a/kde-base/kde-l10n/kde-l10n-4.0.3.ebuild b/kde-base/kde-l10n/kde-l10n-4.0.3.ebuild deleted file mode 100644 index 4283dc4c2bf3..000000000000 --- a/kde-base/kde-l10n/kde-l10n-4.0.3.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-l10n/kde-l10n-4.0.3.ebuild,v 1.2 2008/04/04 01:40:33 mr_bones_ Exp $ - -EAPI="1" - -inherit kde4-base - -DESCRIPTION="KDE internationalization package" -HOMEPAGE="http://www.kde.org/" -LICENSE="GPL-2" - -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=">=sys-devel/gettext-0.15" -RDEPEND="" - -LANGS="ar be bg ca cs csb da de el en_GB eo es et eu fa fi fr fy ga gl hi hu -is it ja kk km ko lv mk nb nds ne nl nn pa pl pt pt_BR ru se sl sv th tr uk wa -zh_CN zh_TW" - -URI_BASE="${SRC_URI/-${PV}.tar.bz2/}" -SRC_URI="" - -for X in ${LANGS} ; do - IUSE="${IUSE} linguas_${X}" - SRC_URI="${SRC_URI} linguas_${X}? ( ${URI_BASE}/${PN}-${X}-${PV}.tar.bz2 )" -done - -S="${WORKDIR}" - -src_unpack() { - if [[ -z ${A} ]]; then - echo - ewarn "You either have the LINGUAS variable unset, or it only" - ewarn "contains languages not supported by ${P}." - ewarn "You won't have any additional language support." - echo - ewarn "${P} supports these language codes:" - ewarn "${LANGS}" - echo - fi - - [[ -n ${A} ]] && unpack ${A} - cd "${S}" - - # Create a top-level CMakeLists.txt to include the selected LINGUAS as sub-directories of ${S} - for dir in * ; do - [[ -d ${dir} ]] && echo "add_subdirectory( ${dir} )" >> "${S}"/CMakeLists.txt - done -} - -src_compile() { - if [[ -n ${A} ]]; then - kde4-base_src_compile - fi -} - -src_install() { - if [[ -n ${A} ]]; then - kde4-base_src_install - fi -} |