summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-dicts/duali-data/ChangeLog8
-rw-r--r--app-dicts/duali-data/duali-data-0.1b.ebuild15
2 files changed, 15 insertions, 8 deletions
diff --git a/app-dicts/duali-data/ChangeLog b/app-dicts/duali-data/ChangeLog
index e7715261136e..ccbf23dd4f50 100644
--- a/app-dicts/duali-data/ChangeLog
+++ b/app-dicts/duali-data/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-dicts/duali-data
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/duali-data/ChangeLog,v 1.12 2007/02/21 20:32:40 peper Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/duali-data/ChangeLog,v 1.13 2008/12/16 00:43:00 pva Exp $
+
+ 16 Dec 2008; Peter Volkov <pva@gentoo.org> duali-data-0.1b.ebuild:
+ Fixed build breakage with duali-2.0, bug #250625, thank Diego E.
+ 'Flameeyes' Pettenò for report.
21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
Transition to Manifest2.
diff --git a/app-dicts/duali-data/duali-data-0.1b.ebuild b/app-dicts/duali-data/duali-data-0.1b.ebuild
index bc02b4e01bd9..2b165c9607d3 100644
--- a/app-dicts/duali-data/duali-data-0.1b.ebuild
+++ b/app-dicts/duali-data/duali-data-0.1b.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/duali-data/duali-data-0.1b.ebuild,v 1.11 2005/04/24 10:49:24 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/duali-data/duali-data-0.1b.ebuild,v 1.12 2008/12/16 00:43:00 pva Exp $
IUSE=""
@@ -20,8 +20,11 @@ src_compile() {
src_install() {
insinto /usr/share/duali
- doins stems.db prefixes.db suffixes.db
- doins tableab tableac tablebc
-
- dodoc gpl.txt README
+ if [[ -e stems.db ]]; then
+ doins stems.db prefixes.db suffixes.db || die
+ else
+ doins stemsdb prefixesdb suffixesdb || die
+ fi
+ doins tableab tableac tablebc || die
+ dodoc README
}