diff options
author | Peter Volkov <pva@gentoo.org> | 2008-12-16 00:43:00 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-12-16 00:43:00 +0000 |
commit | dd3c54386ad780cb961ab13c17510959ea7baf4a (patch) | |
tree | 2ce6c9f5ddb30bd70a773d4d72a7bf7230c58e37 /app-dicts/duali-data | |
parent | Version bump, fixing bug #251056. Remove old. (diff) | |
download | gentoo-2-dd3c54386ad780cb961ab13c17510959ea7baf4a.tar.gz gentoo-2-dd3c54386ad780cb961ab13c17510959ea7baf4a.tar.bz2 gentoo-2-dd3c54386ad780cb961ab13c17510959ea7baf4a.zip |
Fixed build breakage with duali-2.0, bug #250625, thank Diego E. 'Flameeyes' Pettenò for report.
(Portage version: 2.2_rc17/cvs/Linux 2.6.26-openvz.git-89451f9 i686)
Diffstat (limited to 'app-dicts/duali-data')
-rw-r--r-- | app-dicts/duali-data/ChangeLog | 8 | ||||
-rw-r--r-- | app-dicts/duali-data/duali-data-0.1b.ebuild | 15 |
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 } |