@ -0,0 +1,9 @@ |
|||
|
|||
if [ "$ROCKCFG_LINGUAS" == "all" ] ; then |
|||
# note this only works if using ./scripts/Config -nobashmod |
|||
pkgenable kde-i18n=.* |
|||
else |
|||
for lang in $ROCKCFG_LINGUAS ; do |
|||
pkgenable kde-i18n=kde-i18n-$lang |
|||
done |
|||
fi |
@ -0,0 +1,64 @@ |
|||
# automatically generated by ./import.sh |
|||
pkgfork kde-i18n kde-i18n-af status O |
|||
pkgfork kde-i18n kde-i18n-ar status O |
|||
pkgfork kde-i18n kde-i18n-az status O |
|||
pkgfork kde-i18n kde-i18n-bg status O |
|||
pkgfork kde-i18n kde-i18n-bn status O |
|||
pkgfork kde-i18n kde-i18n-br status O |
|||
pkgfork kde-i18n kde-i18n-bs status O |
|||
pkgfork kde-i18n kde-i18n-ca status O |
|||
pkgfork kde-i18n kde-i18n-cs status O |
|||
pkgfork kde-i18n kde-i18n-cy status O |
|||
pkgfork kde-i18n kde-i18n-da status O |
|||
pkgfork kde-i18n kde-i18n-de status O |
|||
pkgfork kde-i18n kde-i18n-el status O |
|||
pkgfork kde-i18n kde-i18n-en_GB status O |
|||
pkgfork kde-i18n kde-i18n-eo status O |
|||
pkgfork kde-i18n kde-i18n-es status O |
|||
pkgfork kde-i18n kde-i18n-et status O |
|||
pkgfork kde-i18n kde-i18n-eu status O |
|||
pkgfork kde-i18n kde-i18n-fa status O |
|||
pkgfork kde-i18n kde-i18n-fi status O |
|||
pkgfork kde-i18n kde-i18n-fr status O |
|||
pkgfork kde-i18n kde-i18n-fy status O |
|||
pkgfork kde-i18n kde-i18n-ga status O |
|||
pkgfork kde-i18n kde-i18n-gl status O |
|||
pkgfork kde-i18n kde-i18n-he status O |
|||
pkgfork kde-i18n kde-i18n-hi status O |
|||
pkgfork kde-i18n kde-i18n-hr status O |
|||
pkgfork kde-i18n kde-i18n-hu status O |
|||
pkgfork kde-i18n kde-i18n-is status O |
|||
pkgfork kde-i18n kde-i18n-it status O |
|||
pkgfork kde-i18n kde-i18n-ja status O |
|||
pkgfork kde-i18n kde-i18n-km status O |
|||
pkgfork kde-i18n kde-i18n-ko status O |
|||
pkgfork kde-i18n kde-i18n-lt status O |
|||
pkgfork kde-i18n kde-i18n-lv status O |
|||
pkgfork kde-i18n kde-i18n-mk status O |
|||
pkgfork kde-i18n kde-i18n-mn status O |
|||
pkgfork kde-i18n kde-i18n-ms status O |
|||
pkgfork kde-i18n kde-i18n-nb status O |
|||
pkgfork kde-i18n kde-i18n-nds status O |
|||
pkgfork kde-i18n kde-i18n-nl status O |
|||
pkgfork kde-i18n kde-i18n-nn status O |
|||
pkgfork kde-i18n kde-i18n-pa status O |
|||
pkgfork kde-i18n kde-i18n-pl status O |
|||
pkgfork kde-i18n kde-i18n-pt status O |
|||
pkgfork kde-i18n kde-i18n-pt_BR status O |
|||
pkgfork kde-i18n kde-i18n-ro status O |
|||
pkgfork kde-i18n kde-i18n-ru status O |
|||
pkgfork kde-i18n kde-i18n-rw status O |
|||
pkgfork kde-i18n kde-i18n-se status O |
|||
pkgfork kde-i18n kde-i18n-sk status O |
|||
pkgfork kde-i18n kde-i18n-sl status O |
|||
pkgfork kde-i18n kde-i18n-sr status O |
|||
pkgfork kde-i18n kde-i18n-sr@Latn status O |
|||
pkgfork kde-i18n kde-i18n-ss status O |
|||
pkgfork kde-i18n kde-i18n-sv status O |
|||
pkgfork kde-i18n kde-i18n-ta status O |
|||
pkgfork kde-i18n kde-i18n-tg status O |
|||
pkgfork kde-i18n kde-i18n-tr status O |
|||
pkgfork kde-i18n kde-i18n-uk status O |
|||
pkgfork kde-i18n kde-i18n-uz status O |
|||
pkgfork kde-i18n kde-i18n-zh_CN status O |
|||
pkgfork kde-i18n kde-i18n-zh_TW status O |
@ -0,0 +1,45 @@ |
|||
#!/bin/bash |
|||
|
|||
base="../../.." |
|||
pkg="kde-i18n" |
|||
download_url='ftp://ftp.kde.org/pub/kde/stable/$desc_V/src/kde-i18n/' |
|||
|
|||
. $base/scripts/functions |
|||
|
|||
PATH="$base/src:$PATH" |
|||
parse_desc $pkg.desc || exit 1 |
|||
|
|||
eval download_url="$download_url" |
|||
|
|||
rm -f $pkg.desc.new pkgmapper.in.new hosted.cfg.new |
|||
|
|||
pkg="$pkg" $base/src/descparser < $pkg.desc > $pkg.desc.new || exit 1 |
|||
|
|||
echo "# automatically generated by $0" >> $pkg.desc.new |
|||
echo "# automatically generated by $0" >> hosted.cfg.new |
|||
echo "# automatically generated by $0" >> pkgmapper.in.new |
|||
echo 'case $xpkg in' >> pkgmapper.in.new |
|||
|
|||
curl -l --disable-epsv -s $download_url | |
|||
egrep "^$pkg-.*\.tar\.bz2" | |
|||
while read file ; do |
|||
filever="${file#$pkg-}" |
|||
filever="${filever%.tar.bz2*}" |
|||
lang="${filever%-*}" |
|||
filever="${filever#$lang-}" |
|||
|
|||
echo "#if xpkg == $pkg-$lang" >> $pkg.desc.new |
|||
echo "[I] KDE translations for the \"$lang\" locale." >> $pkg.desc.new |
|||
echo "[D] 0 $pkg-$lang-$filever.tar.bz2 $download_url" >> $pkg.desc.new |
|||
echo "#endif" >> $pkg.desc.new |
|||
|
|||
echo "pkgfork $pkg $pkg-$lang status O version $filever" >> hosted.cfg.new |
|||
|
|||
echo "$pkg-$lang) pkg=$pkg ;;" >> pkgmapper.in.new |
|||
done |
|||
|
|||
echo 'esac' >> pkgmapper.in.new |
|||
|
|||
for file in $pkg.desc.new pkgmapper.in.new hosted.cfg.new ; do |
|||
mv $file ${file%.new} |
|||
done |
@ -0,0 +1,25 @@ |
|||
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
|||
# |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# Please add additional copyright information _after_ the line containing |
|||
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
|||
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
|||
# |
|||
# ROCK Linux: rock-src/package/kde/kde-i18n-de/kde-i18n-de.conf |
|||
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
|||
# |
|||
# This program is free software; you can redistribute it and/or modify |
|||
# it under the terms of the GNU General Public License as published by |
|||
# the Free Software Foundation; either version 2 of the License, or |
|||
# (at your option) any later version. A copy of the GNU General Public |
|||
# License can be found at Documentation/COPYING. |
|||
# |
|||
# Many people helped and are helping developing ROCK Linux. Please |
|||
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM |
|||
# file for details. |
|||
# |
|||
# --- ROCK-COPYRIGHT-NOTE-END --- |
|||
|
|||
. $base/package/kde/kde-3.conf |
|||
createdocs=0 |
|||
|
@ -0,0 +1,297 @@ |
|||
|
|||
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
|||
[COPY] |
|||
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
[COPY] Please add additional copyright information _after_ the line containing |
|||
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
|||
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
|||
[COPY] |
|||
[COPY] ROCK Linux: rock-src/package/kde/kde-i18n-de/kde-i18n-de.desc |
|||
[COPY] ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
|||
[COPY] |
|||
[COPY] This program is free software; you can redistribute it and/or modify |
|||
[COPY] it under the terms of the GNU General Public License as published by |
|||
[COPY] the Free Software Foundation; either version 2 of the License, or |
|||
[COPY] (at your option) any later version. A copy of the GNU General Public |
|||
[COPY] License can be found at Documentation/COPYING. |
|||
[COPY] |
|||
[COPY] Many people helped and are helping developing ROCK Linux. Please |
|||
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM |
|||
[COPY] file for details. |
|||
[COPY] |
|||
[COPY] --- ROCK-COPYRIGHT-NOTE-END --- |
|||
|
|||
[T] KDE is a network transparent contemporary desktop environment for UNIX |
|||
[T] workstations. KDE seeks to fill the need for an easy to use desktop for |
|||
[T] Unix workstations, similar to the desktop environments found under the |
|||
[T] MacOS or Window95/NT. |
|||
|
|||
[U] http://www.kde.org |
|||
|
|||
[A] The KDE-Team (see http://www.kde.org/people.html) |
|||
[M] The ROCK Linux Project |
|||
|
|||
[C] extra/desktop/kde |
|||
|
|||
[L] GPL |
|||
[S] Stable |
|||
[V] 3.5.1 |
|||
[P] X -?---5---9 193.000 |
|||
[I] KDE translations for "de" locale. |
|||
[D] 0 kde-i18n-de-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
[I] KDE translations for "de" locale. |
|||
[D] 0 kde-i18n-de-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
|
|||
# automatically generated by ./import.sh |
|||
#if xpkg == kde-i18n-af |
|||
[I] KDE translations for the "af" locale. |
|||
[D] 0 kde-i18n-af-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ar |
|||
[I] KDE translations for the "ar" locale. |
|||
[D] 0 kde-i18n-ar-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-az |
|||
[I] KDE translations for the "az" locale. |
|||
[D] 0 kde-i18n-az-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-bg |
|||
[I] KDE translations for the "bg" locale. |
|||
[D] 0 kde-i18n-bg-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-bn |
|||
[I] KDE translations for the "bn" locale. |
|||
[D] 0 kde-i18n-bn-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-br |
|||
[I] KDE translations for the "br" locale. |
|||
[D] 0 kde-i18n-br-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-bs |
|||
[I] KDE translations for the "bs" locale. |
|||
[D] 0 kde-i18n-bs-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ca |
|||
[I] KDE translations for the "ca" locale. |
|||
[D] 0 kde-i18n-ca-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-cs |
|||
[I] KDE translations for the "cs" locale. |
|||
[D] 0 kde-i18n-cs-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-cy |
|||
[I] KDE translations for the "cy" locale. |
|||
[D] 0 kde-i18n-cy-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-da |
|||
[I] KDE translations for the "da" locale. |
|||
[D] 0 kde-i18n-da-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-de |
|||
[I] KDE translations for the "de" locale. |
|||
[D] 0 kde-i18n-de-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-el |
|||
[I] KDE translations for the "el" locale. |
|||
[D] 0 kde-i18n-el-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-en_GB |
|||
[I] KDE translations for the "en_GB" locale. |
|||
[D] 0 kde-i18n-en_GB-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-eo |
|||
[I] KDE translations for the "eo" locale. |
|||
[D] 0 kde-i18n-eo-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-es |
|||
[I] KDE translations for the "es" locale. |
|||
[D] 0 kde-i18n-es-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-et |
|||
[I] KDE translations for the "et" locale. |
|||
[D] 0 kde-i18n-et-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-eu |
|||
[I] KDE translations for the "eu" locale. |
|||
[D] 0 kde-i18n-eu-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-fa |
|||
[I] KDE translations for the "fa" locale. |
|||
[D] 0 kde-i18n-fa-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-fi |
|||
[I] KDE translations for the "fi" locale. |
|||
[D] 0 kde-i18n-fi-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-fr |
|||
[I] KDE translations for the "fr" locale. |
|||
[D] 0 kde-i18n-fr-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-fy |
|||
[I] KDE translations for the "fy" locale. |
|||
[D] 0 kde-i18n-fy-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ga |
|||
[I] KDE translations for the "ga" locale. |
|||
[D] 0 kde-i18n-ga-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-gl |
|||
[I] KDE translations for the "gl" locale. |
|||
[D] 0 kde-i18n-gl-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-he |
|||
[I] KDE translations for the "he" locale. |
|||
[D] 0 kde-i18n-he-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-hi |
|||
[I] KDE translations for the "hi" locale. |
|||
[D] 0 kde-i18n-hi-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-hr |
|||
[I] KDE translations for the "hr" locale. |
|||
[D] 0 kde-i18n-hr-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-hu |
|||
[I] KDE translations for the "hu" locale. |
|||
[D] 0 kde-i18n-hu-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-is |
|||
[I] KDE translations for the "is" locale. |
|||
[D] 0 kde-i18n-is-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-it |
|||
[I] KDE translations for the "it" locale. |
|||
[D] 0 kde-i18n-it-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ja |
|||
[I] KDE translations for the "ja" locale. |
|||
[D] 0 kde-i18n-ja-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-km |
|||
[I] KDE translations for the "km" locale. |
|||
[D] 0 kde-i18n-km-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ko |
|||
[I] KDE translations for the "ko" locale. |
|||
[D] 0 kde-i18n-ko-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-lt |
|||
[I] KDE translations for the "lt" locale. |
|||
[D] 0 kde-i18n-lt-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-lv |
|||
[I] KDE translations for the "lv" locale. |
|||
[D] 0 kde-i18n-lv-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-mk |
|||
[I] KDE translations for the "mk" locale. |
|||
[D] 0 kde-i18n-mk-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-mn |
|||
[I] KDE translations for the "mn" locale. |
|||
[D] 0 kde-i18n-mn-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ms |
|||
[I] KDE translations for the "ms" locale. |
|||
[D] 0 kde-i18n-ms-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-nb |
|||
[I] KDE translations for the "nb" locale. |
|||
[D] 0 kde-i18n-nb-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-nds |
|||
[I] KDE translations for the "nds" locale. |
|||
[D] 0 kde-i18n-nds-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-nl |
|||
[I] KDE translations for the "nl" locale. |
|||
[D] 0 kde-i18n-nl-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-nn |
|||
[I] KDE translations for the "nn" locale. |
|||
[D] 0 kde-i18n-nn-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-pa |
|||
[I] KDE translations for the "pa" locale. |
|||
[D] 0 kde-i18n-pa-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-pl |
|||
[I] KDE translations for the "pl" locale. |
|||
[D] 0 kde-i18n-pl-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-pt |
|||
[I] KDE translations for the "pt" locale. |
|||
[D] 0 kde-i18n-pt-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-pt_BR |
|||
[I] KDE translations for the "pt_BR" locale. |
|||
[D] 0 kde-i18n-pt_BR-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ro |
|||
[I] KDE translations for the "ro" locale. |
|||
[D] 0 kde-i18n-ro-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ru |
|||
[I] KDE translations for the "ru" locale. |
|||
[D] 0 kde-i18n-ru-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-rw |
|||
[I] KDE translations for the "rw" locale. |
|||
[D] 0 kde-i18n-rw-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-se |
|||
[I] KDE translations for the "se" locale. |
|||
[D] 0 kde-i18n-se-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-sk |
|||
[I] KDE translations for the "sk" locale. |
|||
[D] 0 kde-i18n-sk-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-sl |
|||
[I] KDE translations for the "sl" locale. |
|||
[D] 0 kde-i18n-sl-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-sr |
|||
[I] KDE translations for the "sr" locale. |
|||
[D] 0 kde-i18n-sr-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-sr@Latn |
|||
[I] KDE translations for the "sr@Latn" locale. |
|||
[D] 0 kde-i18n-sr@Latn-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ss |
|||
[I] KDE translations for the "ss" locale. |
|||
[D] 0 kde-i18n-ss-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-sv |
|||
[I] KDE translations for the "sv" locale. |
|||
[D] 0 kde-i18n-sv-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-ta |
|||
[I] KDE translations for the "ta" locale. |
|||
[D] 0 kde-i18n-ta-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-tg |
|||
[I] KDE translations for the "tg" locale. |
|||
[D] 0 kde-i18n-tg-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-tr |
|||
[I] KDE translations for the "tr" locale. |
|||
[D] 0 kde-i18n-tr-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-uk |
|||
[I] KDE translations for the "uk" locale. |
|||
[D] 0 kde-i18n-uk-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-uz |
|||
[I] KDE translations for the "uz" locale. |
|||
[D] 0 kde-i18n-uz-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-zh_CN |
|||
[I] KDE translations for the "zh_CN" locale. |
|||
[D] 0 kde-i18n-zh_CN-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
|||
#if xpkg == kde-i18n-zh_TW |
|||
[I] KDE translations for the "zh_TW" locale. |
|||
[D] 0 kde-i18n-zh_TW-3.5.1.tar.bz2 ftp://ftp.kde.org/pub/kde/stable/3.5.1/src/kde-i18n/ |
|||
#endif |
@ -0,0 +1,66 @@ |
|||
# automatically generated by ./import.sh |
|||
case $xpkg in |
|||
kde-i18n-af) pkg=kde-i18n ;; |
|||
kde-i18n-ar) pkg=kde-i18n ;; |
|||
kde-i18n-az) pkg=kde-i18n ;; |
|||
kde-i18n-bg) pkg=kde-i18n ;; |
|||
kde-i18n-bn) pkg=kde-i18n ;; |
|||
kde-i18n-br) pkg=kde-i18n ;; |
|||
kde-i18n-bs) pkg=kde-i18n ;; |
|||
kde-i18n-ca) pkg=kde-i18n ;; |
|||
kde-i18n-cs) pkg=kde-i18n ;; |
|||
kde-i18n-cy) pkg=kde-i18n ;; |
|||
kde-i18n-da) pkg=kde-i18n ;; |
|||
kde-i18n-de) pkg=kde-i18n ;; |
|||
kde-i18n-el) pkg=kde-i18n ;; |
|||
kde-i18n-en_GB) pkg=kde-i18n ;; |
|||
kde-i18n-eo) pkg=kde-i18n ;; |
|||
kde-i18n-es) pkg=kde-i18n ;; |
|||
kde-i18n-et) pkg=kde-i18n ;; |
|||
kde-i18n-eu) pkg=kde-i18n ;; |
|||
kde-i18n-fa) pkg=kde-i18n ;; |
|||
kde-i18n-fi) pkg=kde-i18n ;; |
|||
kde-i18n-fr) pkg=kde-i18n ;; |
|||
kde-i18n-fy) pkg=kde-i18n ;; |
|||
kde-i18n-ga) pkg=kde-i18n ;; |
|||
kde-i18n-gl) pkg=kde-i18n ;; |
|||
kde-i18n-he) pkg=kde-i18n ;; |
|||
kde-i18n-hi) pkg=kde-i18n ;; |
|||
kde-i18n-hr) pkg=kde-i18n ;; |
|||
kde-i18n-hu) pkg=kde-i18n ;; |
|||
kde-i18n-is) pkg=kde-i18n ;; |
|||
kde-i18n-it) pkg=kde-i18n ;; |
|||
kde-i18n-ja) pkg=kde-i18n ;; |
|||
kde-i18n-km) pkg=kde-i18n ;; |
|||
kde-i18n-ko) pkg=kde-i18n ;; |
|||
kde-i18n-lt) pkg=kde-i18n ;; |
|||
kde-i18n-lv) pkg=kde-i18n ;; |
|||
kde-i18n-mk) pkg=kde-i18n ;; |
|||
kde-i18n-mn) pkg=kde-i18n ;; |
|||
kde-i18n-ms) pkg=kde-i18n ;; |
|||
kde-i18n-nb) pkg=kde-i18n ;; |
|||
kde-i18n-nds) pkg=kde-i18n ;; |
|||
kde-i18n-nl) pkg=kde-i18n ;; |
|||
kde-i18n-nn) pkg=kde-i18n ;; |
|||
kde-i18n-pa) pkg=kde-i18n ;; |
|||
kde-i18n-pl) pkg=kde-i18n ;; |
|||
kde-i18n-pt) pkg=kde-i18n ;; |
|||
kde-i18n-pt_BR) pkg=kde-i18n ;; |
|||
kde-i18n-ro) pkg=kde-i18n ;; |
|||
kde-i18n-ru) pkg=kde-i18n ;; |
|||
kde-i18n-rw) pkg=kde-i18n ;; |
|||
kde-i18n-se) pkg=kde-i18n ;; |
|||
kde-i18n-sk) pkg=kde-i18n ;; |
|||
kde-i18n-sl) pkg=kde-i18n ;; |
|||
kde-i18n-sr) pkg=kde-i18n ;; |
|||
kde-i18n-sr@Latn) pkg=kde-i18n ;; |
|||
kde-i18n-ss) pkg=kde-i18n ;; |
|||
kde-i18n-sv) pkg=kde-i18n ;; |
|||
kde-i18n-ta) pkg=kde-i18n ;; |
|||
kde-i18n-tg) pkg=kde-i18n ;; |
|||
kde-i18n-tr) pkg=kde-i18n ;; |
|||
kde-i18n-uk) pkg=kde-i18n ;; |
|||
kde-i18n-uz) pkg=kde-i18n ;; |
|||
kde-i18n-zh_CN) pkg=kde-i18n ;; |
|||
kde-i18n-zh_TW) pkg=kde-i18n ;; |
|||
esac |
@ -0,0 +1,27 @@ |
|||
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
|||
# |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# Please add additional copyright information _after_ the line containing |
|||
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
|||
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
|||
# |
|||
# ROCK Linux: rock-src/package/import/cpan/preconfig.in |
|||
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
|||
# |
|||
# This program is free software; you can redistribute it and/or modify |
|||
# it under the terms of the GNU General Public License as published by |
|||
# the Free Software Foundation; either version 2 of the License, or |
|||
# (at your option) any later version. A copy of the GNU General Public |
|||
# License can be found at Documentation/COPYING. |
|||
# |
|||
# Many people helped and are helping developing ROCK Linux. Please |
|||
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM |
|||
# file for details. |
|||
# |
|||
# --- ROCK-COPYRIGHT-NOTE-END --- |
|||
|
|||
if pkgcheck kde-i18n X |
|||
then |
|||
. package/import/kde-i18n/hosted.cfg |
|||
pkgremove kde-i18n |
|||
fi |
@ -0,0 +1,9 @@ |
|||
|
|||
if [ "$ROCKCFG_LINGUAS" == "all" ] ; then |
|||
# note this only works if using ./scripts/Config -nobashmod |
|||
pkgenable koffice-l10n=.* |
|||
else |
|||
for lang in $ROCKCFG_LINGUAS ; do |
|||
pkgenable koffice-l10n=koffice-l10n-$lang |
|||
done |
|||
fi |
@ -0,0 +1,52 @@ |
|||
# automatically generated by ./import.sh |
|||
pkgfork koffice-l10n koffice-l10n-af status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-ar status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-bg status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-bn status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-br status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-bs status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-ca status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-cs status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-cy status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-da status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-de status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-el status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-en_GB status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-eo status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-es status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-et status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-eu status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-fi status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-fr status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-fy status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-ga status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-he status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-hi status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-hsb status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-hu status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-is status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-it status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-ja status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-lt status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-mk status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-nb status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-nds status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-nl status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-nn status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-pa status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-pl status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-pt status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-pt_BR status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-ro status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-ru status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-se status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-sk status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-sl status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-sr status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-sr@Latn status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-sv status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-ta status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-tg status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-tr status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-uk status O version 1.5-rc1 |
|||
pkgfork koffice-l10n koffice-l10n-zh_CN status O version 1.5-rc1 |
@ -0,0 +1,45 @@ |
|||
#!/bin/bash |
|||
|
|||
base="../../.." |
|||
pkg="koffice-l10n" |
|||
download_url='ftp://ftp.kde.org/pub/kde/unstable/koffice-$desc_V/src/$pkg/' |
|||
|
|||
. $base/scripts/functions |
|||
|
|||
PATH="$base/src:$PATH" |
|||
parse_desc $pkg.desc || exit 1 |
|||
|
|||
eval download_url="$download_url" |
|||
|
|||
rm -f $pkg.desc.new pkgmapper.in.new hosted.cfg.new |
|||
|
|||
pkg="$pkg" $base/src/descparser < $pkg.desc > $pkg.desc.new || exit 1 |
|||
|
|||
echo "# automatically generated by $0" >> $pkg.desc.new |
|||
echo "# automatically generated by $0" >> hosted.cfg.new |
|||
echo "# automatically generated by $0" >> pkgmapper.in.new |
|||
echo 'case $xpkg in' >> pkgmapper.in.new |
|||
|
|||
curl -l --disable-epsv -s $download_url | |
|||
egrep "^$pkg-.*\.tar\.bz2" | |
|||
while read file ; do |
|||
filever="${file#$pkg-}" |
|||
filever="${filever%.tar.bz2*}" |
|||
lang="${filever%%-*}" |
|||
filever="${filever#$lang-}" |
|||
|
|||
echo "#if xpkg == $pkg-$lang" >> $pkg.desc.new |
|||
echo "[I] KOffice translations for the \"$lang\" locale." >> $pkg.desc.new |
|||
echo "[D] 0 $pkg-$lang-$filever.tar.bz2 $download_url" >> $pkg.desc.new |
|||
echo "#endif" >> $pkg.desc.new |
|||
|
|||
echo "pkgfork $pkg $pkg-$lang status O version $filever" >> hosted.cfg.new |
|||
|
|||
echo "$pkg-$lang) pkg=$pkg ;;" >> pkgmapper.in.new |
|||
done |
|||
|
|||
echo 'esac' >> pkgmapper.in.new |
|||
|
|||
for file in $pkg.desc.new pkgmapper.in.new hosted.cfg.new ; do |
|||
mv $file ${file%.new} |
|||
done |
@ -0,0 +1,25 @@ |
|||
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
|||
# |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# Please add additional copyright information _after_ the line containing |
|||
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
|||
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
|||
# |
|||
# ROCK Linux: rock-src/package/kde/kde-i18n-de/kde-i18n-de.conf |
|||
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
|||
# |
|||
# This program is free software; you can redistribute it and/or modify |
|||
# it under the terms of the GNU General Public License as published by |
|||
# the Free Software Foundation; either version 2 of the License, or |
|||
# (at your option) any later version. A copy of the GNU General Public |
|||
# License can be found at Documentation/COPYING. |
|||
# |
|||
# Many people helped and are helping developing ROCK Linux. Please |
|||
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM |
|||
# file for details. |
|||
# |
|||
# --- ROCK-COPYRIGHT-NOTE-END --- |
|||
|
|||
. $base/package/kde/kde-3.conf |
|||
createdocs=0 |
|||
|
@ -0,0 +1,252 @@ |
|||
|
|||
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
|||
[COPY] |
|||
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
[COPY] Please add additional copyright information _after_ the line containing |
|||
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
|||
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
|||
[COPY] |
|||
[COPY] ROCK Linux: rock-src/package/kde/koffice-l10n-de/koffice-l10n-de.desc |
|||
[COPY] ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
|||
[COPY] |
|||
[COPY] This program is free software; you can redistribute it and/or modify |
|||
[COPY] it under the terms of the GNU General Public License as published by |
|||
[COPY] the Free Software Foundation; either version 2 of the License, or |
|||
[COPY] (at your option) any later version. A copy of the GNU General Public |
|||
[COPY] License can be found at Documentation/COPYING. |
|||
[COPY] |
|||
[COPY] Many people helped and are helping developing ROCK Linux. Please |
|||
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM |
|||
[COPY] file for details. |
|||
[COPY] |
|||
[COPY] --- ROCK-COPYRIGHT-NOTE-END --- |
|||
|
|||
[I] The translations for the office-suite of the KDE project |
|||
|
|||
[T] KOffice is the full-featured office-suite of the KDE project. |
|||
[T] |
|||
[T] This release includes the following components: KWord (a frame-based, |
|||
[T] full-featured word processor); KPresenter (a presentation application); |
|||
[T] KSpread (a spreadsheet application); KIllustrator (a vector-drawing |
|||
[T] application); Krayon (a bitmap image editor); Kivio (a flowchart app- |
|||
[T] lication); KChart (a chart drawing application); KFormula (a formula |
|||
[T] editor); Kugar (a tool for generating business quality reports); and |
|||
[T] filters (for importing/exporting documents). |
|||
|
|||
[U] http://www.koffice.org |
|||
|
|||
[A] The KOffice-Team (see http://www.koffice.org/people.php) |
|||
[M] The ROCK Linux Project |
|||
|
|||
[C] extra/office extra/desktop/kde |
|||
|
|||
[L] GPL |
|||
[S] Beta |
|||
[V] 1.5-rc1 |
|||
[P] X -?---5---9 167.600 |
|||
|
|||
# automatically generated by ./import.sh |
|||
#if xpkg == koffice-l10n-af |
|||
[I] KOffice translations for the "af" locale. |
|||
[D] 0 koffice-l10n-af-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-ar |
|||
[I] KOffice translations for the "ar" locale. |
|||
[D] 0 koffice-l10n-ar-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-bg |
|||
[I] KOffice translations for the "bg" locale. |
|||
[D] 0 koffice-l10n-bg-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-bn |
|||
[I] KOffice translations for the "bn" locale. |
|||
[D] 0 koffice-l10n-bn-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-br |
|||
[I] KOffice translations for the "br" locale. |
|||
[D] 0 koffice-l10n-br-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-bs |
|||
[I] KOffice translations for the "bs" locale. |
|||
[D] 0 koffice-l10n-bs-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-ca |
|||
[I] KOffice translations for the "ca" locale. |
|||
[D] 0 koffice-l10n-ca-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-cs |
|||
[I] KOffice translations for the "cs" locale. |
|||
[D] 0 koffice-l10n-cs-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-cy |
|||
[I] KOffice translations for the "cy" locale. |
|||
[D] 0 koffice-l10n-cy-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-da |
|||
[I] KOffice translations for the "da" locale. |
|||
[D] 0 koffice-l10n-da-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-de |
|||
[I] KOffice translations for the "de" locale. |
|||
[D] 0 koffice-l10n-de-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-el |
|||
[I] KOffice translations for the "el" locale. |
|||
[D] 0 koffice-l10n-el-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-en_GB |
|||
[I] KOffice translations for the "en_GB" locale. |
|||
[D] 0 koffice-l10n-en_GB-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-eo |
|||
[I] KOffice translations for the "eo" locale. |
|||
[D] 0 koffice-l10n-eo-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-es |
|||
[I] KOffice translations for the "es" locale. |
|||
[D] 0 koffice-l10n-es-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-et |
|||
[I] KOffice translations for the "et" locale. |
|||
[D] 0 koffice-l10n-et-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-eu |
|||
[I] KOffice translations for the "eu" locale. |
|||
[D] 0 koffice-l10n-eu-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-fi |
|||
[I] KOffice translations for the "fi" locale. |
|||
[D] 0 koffice-l10n-fi-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-fr |
|||
[I] KOffice translations for the "fr" locale. |
|||
[D] 0 koffice-l10n-fr-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-fy |
|||
[I] KOffice translations for the "fy" locale. |
|||
[D] 0 koffice-l10n-fy-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-ga |
|||
[I] KOffice translations for the "ga" locale. |
|||
[D] 0 koffice-l10n-ga-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-he |
|||
[I] KOffice translations for the "he" locale. |
|||
[D] 0 koffice-l10n-he-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-hi |
|||
[I] KOffice translations for the "hi" locale. |
|||
[D] 0 koffice-l10n-hi-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-hsb |
|||
[I] KOffice translations for the "hsb" locale. |
|||
[D] 0 koffice-l10n-hsb-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-hu |
|||
[I] KOffice translations for the "hu" locale. |
|||
[D] 0 koffice-l10n-hu-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-is |
|||
[I] KOffice translations for the "is" locale. |
|||
[D] 0 koffice-l10n-is-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-it |
|||
[I] KOffice translations for the "it" locale. |
|||
[D] 0 koffice-l10n-it-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-ja |
|||
[I] KOffice translations for the "ja" locale. |
|||
[D] 0 koffice-l10n-ja-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-lt |
|||
[I] KOffice translations for the "lt" locale. |
|||
[D] 0 koffice-l10n-lt-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-mk |
|||
[I] KOffice translations for the "mk" locale. |
|||
[D] 0 koffice-l10n-mk-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-nb |
|||
[I] KOffice translations for the "nb" locale. |
|||
[D] 0 koffice-l10n-nb-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-nds |
|||
[I] KOffice translations for the "nds" locale. |
|||
[D] 0 koffice-l10n-nds-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-nl |
|||
[I] KOffice translations for the "nl" locale. |
|||
[D] 0 koffice-l10n-nl-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-nn |
|||
[I] KOffice translations for the "nn" locale. |
|||
[D] 0 koffice-l10n-nn-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-pa |
|||
[I] KOffice translations for the "pa" locale. |
|||
[D] 0 koffice-l10n-pa-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-pl |
|||
[I] KOffice translations for the "pl" locale. |
|||
[D] 0 koffice-l10n-pl-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-pt |
|||
[I] KOffice translations for the "pt" locale. |
|||
[D] 0 koffice-l10n-pt-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-pt_BR |
|||
[I] KOffice translations for the "pt_BR" locale. |
|||
[D] 0 koffice-l10n-pt_BR-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-ro |
|||
[I] KOffice translations for the "ro" locale. |
|||
[D] 0 koffice-l10n-ro-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-ru |
|||
[I] KOffice translations for the "ru" locale. |
|||
[D] 0 koffice-l10n-ru-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-se |
|||
[I] KOffice translations for the "se" locale. |
|||
[D] 0 koffice-l10n-se-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-sk |
|||
[I] KOffice translations for the "sk" locale. |
|||
[D] 0 koffice-l10n-sk-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-sl |
|||
[I] KOffice translations for the "sl" locale. |
|||
[D] 0 koffice-l10n-sl-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-sr |
|||
[I] KOffice translations for the "sr" locale. |
|||
[D] 0 koffice-l10n-sr-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-sr@Latn |
|||
[I] KOffice translations for the "sr@Latn" locale. |
|||
[D] 0 koffice-l10n-sr@Latn-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-sv |
|||
[I] KOffice translations for the "sv" locale. |
|||
[D] 0 koffice-l10n-sv-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-ta |
|||
[I] KOffice translations for the "ta" locale. |
|||
[D] 0 koffice-l10n-ta-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-tg |
|||
[I] KOffice translations for the "tg" locale. |
|||
[D] 0 koffice-l10n-tg-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-tr |
|||
[I] KOffice translations for the "tr" locale. |
|||
[D] 0 koffice-l10n-tr-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-uk |
|||
[I] KOffice translations for the "uk" locale. |
|||
[D] 0 koffice-l10n-uk-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
|||
#if xpkg == koffice-l10n-zh_CN |
|||
[I] KOffice translations for the "zh_CN" locale. |
|||
[D] 0 koffice-l10n-zh_CN-1.5-rc1.tar.bz2 ftp://ftp.kde.org/pub/kde/unstable/koffice-1.5-rc1/src/koffice-l10n/ |
|||
#endif |
@ -0,0 +1,54 @@ |
|||
# automatically generated by ./import.sh |
|||
case $xpkg in |
|||
koffice-l10n-af) pkg=koffice-l10n ;; |
|||
koffice-l10n-ar) pkg=koffice-l10n ;; |
|||
koffice-l10n-bg) pkg=koffice-l10n ;; |
|||
koffice-l10n-bn) pkg=koffice-l10n ;; |
|||
koffice-l10n-br) pkg=koffice-l10n ;; |
|||
koffice-l10n-bs) pkg=koffice-l10n ;; |
|||
koffice-l10n-ca) pkg=koffice-l10n ;; |
|||
koffice-l10n-cs) pkg=koffice-l10n ;; |
|||
koffice-l10n-cy) pkg=koffice-l10n ;; |
|||
koffice-l10n-da) pkg=koffice-l10n ;; |
|||
koffice-l10n-de) pkg=koffice-l10n ;; |
|||
koffice-l10n-el) pkg=koffice-l10n ;; |
|||
koffice-l10n-en_GB) pkg=koffice-l10n ;; |
|||
koffice-l10n-eo) pkg=koffice-l10n ;; |
|||
koffice-l10n-es) pkg=koffice-l10n ;; |
|||
koffice-l10n-et) pkg=koffice-l10n ;; |
|||
koffice-l10n-eu) pkg=koffice-l10n ;; |
|||
koffice-l10n-fi) pkg=koffice-l10n ;; |
|||
koffice-l10n-fr) pkg=koffice-l10n ;; |
|||
koffice-l10n-fy) pkg=koffice-l10n ;; |
|||
koffice-l10n-ga) pkg=koffice-l10n ;; |
|||
koffice-l10n-he) pkg=koffice-l10n ;; |
|||
koffice-l10n-hi) pkg=koffice-l10n ;; |
|||
koffice-l10n-hsb) pkg=koffice-l10n ;; |
|||
koffice-l10n-hu) pkg=koffice-l10n ;; |
|||
koffice-l10n-is) pkg=koffice-l10n ;; |
|||
koffice-l10n-it) pkg=koffice-l10n ;; |
|||
koffice-l10n-ja) pkg=koffice-l10n ;; |
|||
koffice-l10n-lt) pkg=koffice-l10n ;; |
|||
koffice-l10n-mk) pkg=koffice-l10n ;; |
|||
koffice-l10n-nb) pkg=koffice-l10n ;; |
|||
koffice-l10n-nds) pkg=koffice-l10n ;; |
|||
koffice-l10n-nl) pkg=koffice-l10n ;; |
|||
koffice-l10n-nn) pkg=koffice-l10n ;; |
|||
koffice-l10n-pa) pkg=koffice-l10n ;; |
|||
koffice-l10n-pl) pkg=koffice-l10n ;; |
|||
koffice-l10n-pt) pkg=koffice-l10n ;; |
|||
koffice-l10n-pt_BR) pkg=koffice-l10n ;; |
|||
koffice-l10n-ro) pkg=koffice-l10n ;; |
|||
koffice-l10n-ru) pkg=koffice-l10n ;; |
|||
koffice-l10n-se) pkg=koffice-l10n ;; |
|||
koffice-l10n-sk) pkg=koffice-l10n ;; |
|||
koffice-l10n-sl) pkg=koffice-l10n ;; |
|||
koffice-l10n-sr) pkg=koffice-l10n ;; |
|||
koffice-l10n-sr@Latn) pkg=koffice-l10n ;; |
|||
koffice-l10n-sv) pkg=koffice-l10n ;; |
|||
koffice-l10n-ta) pkg=koffice-l10n ;; |
|||
koffice-l10n-tg) pkg=koffice-l10n ;; |
|||
koffice-l10n-tr) pkg=koffice-l10n ;; |
|||
koffice-l10n-uk) pkg=koffice-l10n ;; |
|||
koffice-l10n-zh_CN) pkg=koffice-l10n ;; |
|||
esac |
@ -0,0 +1,27 @@ |
|||
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
|||
# |
|||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|||
# Please add additional copyright information _after_ the line containing |
|||
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
|||
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
|||
# |
|||
# ROCK Linux: rock-src/package/import/cpan/preconfig.in |
|||
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
|||
# |
|||
# This program is free software; you can redistribute it and/or modify |
|||
# it under the terms of the GNU General Public License as published by |
|||
# the Free Software Foundation; either version 2 of the License, or |
|||
# (at your option) any later version. A copy of the GNU General Public |
|||
# License can be found at Documentation/COPYING. |
|||
# |
|||
# Many people helped and are helping developing ROCK Linux. Please |
|||
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM |
|||
# file for details. |
|||
# |
|||
# --- ROCK-COPYRIGHT-NOTE-END --- |
|||
|
|||
if pkgcheck koffice-l10n X |
|||
then |
|||
. package/import/koffice-l10n/hosted.cfg |
|||
pkgremove koffice-l10n |
|||
fi |