diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-05-11 08:46:08 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-05-11 08:46:08 +0000 |
commit | be91fa01342bfa8b6142167fb2453c56ce1a1ebb (patch) | |
tree | 6c05080a815b27f9b2535891b1b38b359ec6388d /x11-misc/evolvotron/evolvotron-0.4.0.ebuild | |
parent | Version bump. Fixes bugs 168931, 174790, 177913. (diff) | |
download | gentoo-2-be91fa01342bfa8b6142167fb2453c56ce1a1ebb.tar.gz gentoo-2-be91fa01342bfa8b6142167fb2453c56ce1a1ebb.tar.bz2 gentoo-2-be91fa01342bfa8b6142167fb2453c56ce1a1ebb.zip |
Version bump for bug 177271.
(Portage version: 2.1.2.7)
Diffstat (limited to 'x11-misc/evolvotron/evolvotron-0.4.0.ebuild')
-rw-r--r-- | x11-misc/evolvotron/evolvotron-0.4.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/x11-misc/evolvotron/evolvotron-0.4.0.ebuild b/x11-misc/evolvotron/evolvotron-0.4.0.ebuild new file mode 100644 index 000000000000..5b30ee201dac --- /dev/null +++ b/x11-misc/evolvotron/evolvotron-0.4.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/evolvotron-0.4.0.ebuild,v 1.1 2007/05/11 08:46:08 drac Exp $ + +inherit qt3 eutils + +DESCRIPTION="An interactive generative art application" +HOMEPAGE="http://www.bottlenose.demon.co.uk/share/evolvotron/index.htm" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc" +IUSE="" + +DEPEND="$(qt_min_version 3)" + +S="${WORKDIR}/${PN}" + +src_unpack() { + unpack ${A} + sed -i \ + -e '/QMAKE_CXXFLAGS_RELEASE .*march/d' \ + -e "/^QMAKE_CXXFLAGS_RELEASE += -O3/ s:=.*:= ${CXXFLAGS}:" \ + -e '/^INSTALLPATH/ s:=.*:= /usr/bin:' "${S}"/common.pro \ + || die "sed common.pro failed" + epatch "${FILESDIR}/${PN}-0.3.1-gcc4.patch" +} + +src_compile() { + export PATH=${QTDIR}/bin:${PATH} + econf fs || die + emake -j1 || die "emake failed" +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die "emake install failed" + dodoc BUGS CHANGES README TODO USAGE +} |