Portage is a package management system used by Gentoo Linux
# ChangeLog for kde-misc/filelight-i18n
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/filelight-i18n/ChangeLog,v 1.6 2007/11/14 13:56:59 keytoaster Exp $
14 Nov 2007; Tobias Heinlein
filelight-i18n-1.0.ebuild:
amd64 stable, bug #194745
06 Oct 2007; Tobias Scherbaum
filelight-i18n-1.0.ebuild:
ppc stable, bug #194745
05 Oct 2007; Raúl Porcel
sparc stable wrt #194745
05 Oct 2007; Christian Faulhammer
filelight-i18n-1.0.ebuild:
stable x86, bug 194745
05 Oct 2007; Jeroen Roovers
Stable for HPPA (bug #194745).
*filelight-i18n-1.0 (24 Jun 2007)
24 Jun 2007; Wulf C. Krueger
+filelight-i18n-1.0.ebuild:
Initial ebuild to add localisation support to kde-misc/filelight as
requested in bug 182565.
DIST filelight-1.0-i18n-20070422.tar.bz2 986141 RMD160 e676c7c208123b2209514d3b9406540533103715 SHA1 1f50270d851ae7578b696f1e9737be82ad06a424 SHA256 1c3b973b3dc70e08a83990a737afd15aa653029202270992940b2a23705f02fc
EBUILD filelight-i18n-1.0.ebuild 1425 RMD160 62d994e73094072e067116f8a58457710a92e49e SHA1 94cd87d807d0fc88e3040f3b1755a2dece5cff4d SHA256 a6b581700b2cd979c0b58783af87d637e88a03c9a19b246e611a8bac29ebf863
MISC ChangeLog 1003 RMD160 6350f355878a1cbced0a4e62a6c41514a4ef50a6 SHA1 bbd522dd593bbe710b76cf07b8dc5595233b19a0 SHA256 eda26a47d107476915df42e8d903c1a35628cb86c6d0ef0f1963c0b33227cf6e
MISC metadata.xml 156 RMD160 ecce3b981f150c45ae1e84e2d208e678d6124259 SHA1 b64f7c0b4e5db816d82ad19848f72118af129d35 SHA256 2f4da28506b9d4185f320f67a6191d30c7a921217ed4447ed46ea0bc4aefc79a
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/filelight-i18n/filelight-i18n-1.0.ebuild,v 1.6 2007/11/14 13:56:59 keytoaster Exp $
inherit kde
MY_P="${PN/i18n/${PV}}-i18n-20070422"
DESCRIPTION="Translations for kde-misc/filelight"
HOMEPAGE="http://www.methylblue.com/filelight/"
SRC_URI="http://www.methylblue.com/filelight/packages/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ppc sparc x86 ~x86-fbsd"
IUSE="doc"
DEPEND="~kde-misc/filelight-1.0"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
LANGS="az bg br ca cs cy da de el en_GB es et fr ga gl is it ja ka lt nb nl pl
pt pt_BR ro ru rw sr sr@Latn sv ta tr uk"
LANGS_DOC="da es et it pt ru sv"
for lang in ${LANGS}; do
IUSE="${IUSE} linguas_${lang}"
done
src_unpack(){
kde_src_unpack
rm -f "${S}/configure"
local MAKE_PO=$(echo "${LINGUAS} ${LANGS}" | fmt -w 1 | sort | uniq -d | tr '\n' ' ')
elog "Enabling translations for: en ${MAKE_PO}"
sed -i -e "s:^SUBDIRS =.*:SUBDIRS = . ${MAKE_PO}:" "${S}/po/Makefile.am" || die "sed for locale failed"
if use doc; then
local MAKE_DOC=$(echo "${LINGUAS} ${LANGS_DOC}" | fmt -w 1 | sort | uniq -d | tr '\n' ' ')
elog "Enabling documentation for: en ${MAKE_DOC}"
sed -i -e "s:^SUBDIRS =.*:SUBDIRS = filelight ${MAKE_DOC}:" "${S}/doc/Makefile.am" || die "sed for locale (docs) failed"
fi
}