diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2005-08-22 15:49:09 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2005-08-22 15:49:09 +0000 |
commit | 7f41566dc926d3035b3e4205fdf0ccec233cdba6 (patch) | |
tree | ffe374e760bc10794326d8124458bce2ca4d3df2 /sci-mathematics/kalamaris | |
parent | Version Bump. Fax4cups-1.24 Marked Stable on AMD64 and x86. (diff) | |
download | gentoo-2-7f41566dc926d3035b3e4205fdf0ccec233cdba6.tar.gz gentoo-2-7f41566dc926d3035b3e4205fdf0ccec233cdba6.tar.bz2 gentoo-2-7f41566dc926d3035b3e4205fdf0ccec233cdba6.zip |
Adding an ugly workaround for the broken 'dependency' on ARTS (bug #96757)
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sci-mathematics/kalamaris')
-rw-r--r-- | sci-mathematics/kalamaris/ChangeLog | 5 | ||||
-rw-r--r-- | sci-mathematics/kalamaris/Manifest | 4 | ||||
-rw-r--r-- | sci-mathematics/kalamaris/kalamaris-0.7.1.ebuild | 18 |
3 files changed, 23 insertions, 4 deletions
diff --git a/sci-mathematics/kalamaris/ChangeLog b/sci-mathematics/kalamaris/ChangeLog index 9676d1e74f87..b9089ed3069a 100644 --- a/sci-mathematics/kalamaris/ChangeLog +++ b/sci-mathematics/kalamaris/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/kalamaris # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/kalamaris/ChangeLog,v 1.3 2005/07/10 01:01:52 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/kalamaris/ChangeLog,v 1.4 2005/08/22 15:49:09 phosphan Exp $ + + 22 Aug 2005; Patrick Kursawe <phosphan@gentoo.org> kalamaris-0.7.1.ebuild: + Adding an ugly workaround for the broken 'dependency' on ARTS (bug #96757) 10 Jul 2005; Jason Wever <weeve@gentoo.org> kalamaris-0.7.1.ebuild: Added ~sparc keyword. diff --git a/sci-mathematics/kalamaris/Manifest b/sci-mathematics/kalamaris/Manifest index 52601a123124..189320bf0fae 100644 --- a/sci-mathematics/kalamaris/Manifest +++ b/sci-mathematics/kalamaris/Manifest @@ -1,4 +1,4 @@ -MD5 a5c0e8d6d617d11b86d08fd387a1bd53 ChangeLog 952 -MD5 e28c09adfa3a09097b977476fd689af6 kalamaris-0.7.1.ebuild 674 +MD5 e6b0ecfbebebcff9515e3ea8d6080e37 kalamaris-0.7.1.ebuild 952 +MD5 0281051af514b8a87aae7a3f858b6b0a ChangeLog 1107 MD5 0ffcd41aa96cf1bcffd8b539c27957db metadata.xml 157 MD5 428aa2f2615902e3e9c937a25a5c5cfd files/digest-kalamaris-0.7.1 68 diff --git a/sci-mathematics/kalamaris/kalamaris-0.7.1.ebuild b/sci-mathematics/kalamaris/kalamaris-0.7.1.ebuild index 9d57c93fa944..3ff489c82a9d 100644 --- a/sci-mathematics/kalamaris/kalamaris-0.7.1.ebuild +++ b/sci-mathematics/kalamaris/kalamaris-0.7.1.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/sci-mathematics/kalamaris/kalamaris-0.7.1.ebuild,v 1.2 2005/07/10 01:01:52 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/kalamaris/kalamaris-0.7.1.ebuild,v 1.3 2005/08/22 15:49:09 phosphan Exp $ inherit kde @@ -12,10 +12,26 @@ LICENSE="GPL-2" KEYWORDS="~ppc ~sparc x86" DEPEND="dev-libs/gmp" + need-kde 3 S="${WORKDIR}/${PN}" +src_unpack() { + unpack ${A} + cd ${S} + mkdir fakebin + for prog in mcopidl artsc-config; do + echo '#!/bin/sh' > fakebin/${prog} + chmod +x fakebin/${prog} + done +} + +src_compile() { + PATH="${PATH}:${KDEDIR}/bin:fakebin" econf || die "econf failed" + emake || die "emake failed" +} + src_install() { kde_src_install insinto /usr/share/${PN}/examples |