diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-05-16 18:27:14 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-05-16 18:27:14 +0000 |
commit | 2206a8c798d6a0b8608c3d972259b9aae28aa9f5 (patch) | |
tree | 12af1e4780a78360ae1af1cf6d04b1fbdca9cd19 /app-i18n/kde-i18n | |
parent | Unmasked openoffice 1.0.0 (diff) | |
download | historical-2206a8c798d6a0b8608c3d972259b9aae28aa9f5.tar.gz historical-2206a8c798d6a0b8608c3d972259b9aae28aa9f5.tar.bz2 historical-2206a8c798d6a0b8608c3d972259b9aae28aa9f5.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 + +} |