diff options
Diffstat (limited to 'sci-electronics/alliance/alliance-5.0.20110203.ebuild')
-rw-r--r-- | sci-electronics/alliance/alliance-5.0.20110203.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/sci-electronics/alliance/alliance-5.0.20110203.ebuild b/sci-electronics/alliance/alliance-5.0.20110203.ebuild new file mode 100644 index 000000000000..1229031f0088 --- /dev/null +++ b/sci-electronics/alliance/alliance-5.0.20110203.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/alliance/alliance-5.0.20110203.ebuild,v 1.1 2011/07/25 06:04:27 tomjbe Exp $ + +EAPI=4 + +inherit versionator flag-o-matic eutils + +MY_PV=$(replace_version_separator 2 '-' ) +UPSTREAM_VERSION=$(get_version_component_range 1-2) +URL="http://www-asim.lip6.fr/pub/alliance/distribution/${UPSTREAM_VERSION}" + +DESCRIPTION="Digital IC design tools (simulation, synthesis, place/route, etc...)." +HOMEPAGE="http://www-asim.lip6.fr/recherche/alliance/" +SRC_URI="${URL}/${PN}-${MY_PV}.tar.gz" + +LICENSE="GPL-2 LGPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=x11-libs/openmotif-2.3:0 + x11-libs/libXpm + x11-libs/libXt" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-${UPSTREAM_VERSION}" + +src_prepare() { + #fix buffer overrun (bug 340789) + epatch "${FILESDIR}"/${PN}-${UPSTREAM_VERSION}.20070718-overun.patch +} + +src_configure() { + # Fix bug #134285 + replace-flags -O3 -O2 + + # Alliance requires everything to be in the same directory + econf \ + --prefix=/usr/lib/${PN} \ + --mandir=/usr/lib/${PN}/man \ + --with-x \ + --with-motif \ + --with-xpm \ + --with-alc-shared +} + +src_compile() { + # See bug #134145 + emake -j1 +} + +src_install() { + make install DESTDIR="${D}" + insinto /etc + newins distrib/etc/alc_env.sh alliance.env +} + +pkg_postinst() { + elog "Users should source /etc/alliance.env before working with Alliance tools." +} |