sci-electronics/irsim: Maintenance release

Package-Manager: portage-2.2.24
This commit is contained in:
Thomas Beierlein
2015-11-16 21:34:45 +01:00
parent 9028bc6040
commit 3224706d60
2 changed files with 51 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST irsim-9.7.79.tgz 471749 SHA256 48f639b0893eaf116d0d248b32fbc884fe5eceaba57499f22ee61e6e7c44b7eb SHA512 a5bbf9757ff1c6e74f36725e9da8d16cebff7a3a77174f37b3e2a2239afc839ac7165214d221c44d437fa07f5544e01969e0cad4e205067a04c7e37c8d3c1969 WHIRLPOOL 822f78763e60ae3edf41d896036a93a38696f84ea6274ed011a83263fb79b61201f2c9d86f2ad2559c328f9b3cb4cfbcabc067070251b3757bc823d6175debe0
DIST irsim-9.7.87.tgz 459249 SHA256 528e8daa9afa63ba81425fc679b786228e314f45b64f03f67150332f0fd7bff6 SHA512 2399c41d22db146ce4d87019476f975386aef62afd831bc245ff8d8fc5c88a256712c31a04b58cacf28602c00273ed4623adffc2eddb4c7b533e7eb0894a9651 WHIRLPOOL e469b0d7015e735867fa0d90e3a2c961f73d8cf5a554dd70011ea634f4031b061a48fcce5587a2d941a4aea05057c6dda0a8d7b0ec09c9f27bf972f418b3d22f
DIST irsim-9.7.93.tgz 465721 SHA256 072d6a487a8bd0537b986a4dd53fa39e2123a1680a8df13afd25c5d9d448f9b8 SHA512 441a803935c178bdd663360df058142c07d91aecd158d6be8f10b670fc2a295e79839914de6a85ced58a79591625c514e2ceabe87486092d8a1784c7e47a02b3 WHIRLPOOL 68976c5c3c19f69c16bf48746c29d181cffa0cc0d7c993ea3683bd4e9c1c1c097d8eb14ef3a7efa66842a546255541f8bea7183cd12f7dc26eee42e8306547a9

View File

@@ -0,0 +1,50 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib
DESCRIPTION="IRSIM is a \"switch-level\" simulator"
HOMEPAGE="http://opencircuitdesign.com/irsim/"
SRC_URI="http://opencircuitdesign.com/irsim/archive/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-lang/tcl:0
dev-lang/tk:0"
DEPEND="${RDEPEND}
app-shells/tcsh"
src_prepare() {
epatch "${FILESDIR}"/${PN}-9.7.72-ldflags.patch
epatch "${FILESDIR}"/${PN}-9.7.79-datadir.patch
}
src_configure() {
# Short-circuit top-level configure script to retain CFLAGS
cd scripts
#tc-export CPP
econf
}
src_install() {
emake DESTDIR="${D}" DOCDIR=/usr/share/doc/${PF} install
dodoc README
}
pkg_postinst() {
einfo
einfo "You will probably need to add to your ~/.Xdefaults"
einfo "the following line:"
einfo "irsim.background: black"
einfo
einfo "This is needed because Gentoo from default sets a"
einfo "grey background which makes impossible to see the"
einfo "simulation (white line on light gray background)."
einfo
}