summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-08-20 09:51:36 +0000
committerDan Armak <danarmak@gentoo.org>2002-08-20 09:51:36 +0000
commit8fa19b1456317a1ea9f73a9af837baa5e2fd3f91 (patch)
tree220d8711d74840fdbbfaa8bea7bb842933a820df /app-i18n/kde-i18n
parentgentoo-r8 (diff)
downloadhistorical-8fa19b1456317a1ea9f73a9af837baa5e2fd3f91.tar.gz
historical-8fa19b1456317a1ea9f73a9af837baa5e2fd3f91.tar.bz2
historical-8fa19b1456317a1ea9f73a9af837baa5e2fd3f91.zip
i18n packages for kde 3.0.3
Diffstat (limited to 'app-i18n/kde-i18n')
-rw-r--r--app-i18n/kde-i18n/files/digest-kde-i18n-3.0.32
-rw-r--r--app-i18n/kde-i18n/kde-i18n-3.0.3.ebuild24
2 files changed, 26 insertions, 0 deletions
diff --git a/app-i18n/kde-i18n/files/digest-kde-i18n-3.0.3 b/app-i18n/kde-i18n/files/digest-kde-i18n-3.0.3
new file mode 100644
index 000000000000..ea05f615bc3c
--- /dev/null
+++ b/app-i18n/kde-i18n/files/digest-kde-i18n-3.0.3
@@ -0,0 +1,2 @@
+MD5 4e0da12a8cfd78f0fd2935b93bdf78d1 kde-i18n-3.0.3.tar.bz2 96503290
+MD5 fab5aecf469f755d9da4ecfc994f9671 kde-i18n-gentoo.patch 898
diff --git a/app-i18n/kde-i18n/kde-i18n-3.0.3.ebuild b/app-i18n/kde-i18n/kde-i18n-3.0.3.ebuild
new file mode 100644
index 000000000000..0c4a0062fc7d
--- /dev/null
+++ b/app-i18n/kde-i18n/kde-i18n-3.0.3.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/kde-i18n/kde-i18n-3.0.3.ebuild,v 1.1 2002/08/20 09:51:33 danarmak Exp $
+
+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
+
+}