diff options
author | 2002-05-16 18:27:14 +0000 | |
---|---|---|
committer | 2002-05-16 18:27:14 +0000 | |
commit | d21d7513ebcb94d43a258c125406c2e96cf7917d (patch) | |
tree | 469d9df447ffed5768f6906d782178ca8f2b0319 /app-i18n/kde-i18n | |
parent | Unmasked openoffice 1.0.0 (diff) | |
download | gentoo-2-d21d7513ebcb94d43a258c125406c2e96cf7917d.tar.gz gentoo-2-d21d7513ebcb94d43a258c125406c2e96cf7917d.tar.bz2 gentoo-2-d21d7513ebcb94d43a258c125406c2e96cf7917d.zip |
kde-i18n-*-3.0.1
Diffstat (limited to 'app-i18n/kde-i18n')
-rw-r--r-- | app-i18n/kde-i18n/kde-i18n-3.0.1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app-i18n/kde-i18n/kde-i18n-3.0.1.ebuild b/app-i18n/kde-i18n/kde-i18n-3.0.1.ebuild new file mode 100644 index 000000000000..bed046337871 --- /dev/null +++ b/app-i18n/kde-i18n/kde-i18n-3.0.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Dan Armak <danarmak@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kde-i18n/kde-i18n-3.0.1.ebuild,v 1.1 2002/05/16 18:27:13 danarmak Exp $ +. /usr/portage/eclass/inherit.eclass || die +inherit kde-i18n +S=${WORKDIR}/${P} + +src_unpack() { + + cd ${WORKDIR} + unpack ${P}.tar.bz2 + + # we need to patch the Makefile.in's of <lang>/docs/common/ for each + # languager, but we can't patch Makefile.am's, so better than patching in + # src_compile, we make -f Makefile.cvs here in src_unpack. + cd ${S} + make -f Makefile.cvs + for x in `cat subdirs`; do + cd ${S}/${x} + [ -d docs/common ] && \ + ( patch -p0 < ${DISTDIR}/kde-i18n-gentoo.patch || die ) + done + +} |