diff options
author | David Holm <dholm@gentoo.org> | 2005-05-23 08:22:24 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2005-05-23 08:22:24 +0000 |
commit | 304a47bb069aa92a3962a528ec107274b4d900ea (patch) | |
tree | e500661388f2cfa64fcc9b9b2c26237ef2c927cc /app-office/plan | |
parent | tested on alpha/arm (diff) | |
download | gentoo-2-304a47bb069aa92a3962a528ec107274b4d900ea.tar.gz gentoo-2-304a47bb069aa92a3962a528ec107274b4d900ea.tar.bz2 gentoo-2-304a47bb069aa92a3962a528ec107274b4d900ea.zip |
Fixed bug #63533
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-office/plan')
-rw-r--r-- | app-office/plan/ChangeLog | 5 | ||||
-rw-r--r-- | app-office/plan/plan-1.8.7.ebuild | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app-office/plan/ChangeLog b/app-office/plan/ChangeLog index fe99f6d48162..898fbba5ed0b 100644 --- a/app-office/plan/ChangeLog +++ b/app-office/plan/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-office/plan # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/plan/ChangeLog,v 1.8 2005/01/01 15:40:04 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/plan/ChangeLog,v 1.9 2005/05/23 08:22:24 dholm Exp $ + + 23 May 2005; David Holm <dholm@gentoo.org> plan-1.8.7.ebuild: + Fixed bug #63533 02 Jul 2004; Aron Griffis <agriffis@gentoo.org> plan-1.8.6.ebuild, plan-1.8.7.ebuild: diff --git a/app-office/plan/plan-1.8.7.ebuild b/app-office/plan/plan-1.8.7.ebuild index 57d453a01080..1a5abeed9f20 100644 --- a/app-office/plan/plan-1.8.7.ebuild +++ b/app-office/plan/plan-1.8.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/plan/plan-1.8.7.ebuild,v 1.4 2005/01/01 15:40:04 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/plan/plan-1.8.7.ebuild,v 1.5 2005/05/23 08:22:24 dholm Exp $ inherit eutils @@ -27,11 +27,14 @@ src_unpack() { } src_compile() { - make linux || die "make failed" + make SHARE=/usr/share/plan linux || die "make failed" } src_install() { - make DESTDIR=${D} install || die + make \ + DESTDIR=${D} \ + SHARE=/usr/share/plan \ + install || die "install failed" keepdir /usr/share/plan/netplan.dir cd ${S}/.. |