diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2013-02-28 16:19:35 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2013-02-28 16:19:35 +0000 |
commit | 2682da54e34ee424963182d8090838da8f0ceeb9 (patch) | |
tree | 9c905f988654bcbd967f69f16d54d03fafa71ea5 /sci-electronics/spice | |
parent | Remove previously incorrect assumption about DISTUTILS_SINGLE_IMPL (diff) | |
download | gentoo-2-2682da54e34ee424963182d8090838da8f0ceeb9.tar.gz gentoo-2-2682da54e34ee424963182d8090838da8f0ceeb9.tar.bz2 gentoo-2-2682da54e34ee424963182d8090838da8f0ceeb9.zip |
old
(Portage version: 2.1.11.50/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sci-electronics/spice')
-rw-r--r-- | sci-electronics/spice/ChangeLog | 7 | ||||
-rw-r--r-- | sci-electronics/spice/spice-3.5.5.ebuild | 65 |
2 files changed, 5 insertions, 67 deletions
diff --git a/sci-electronics/spice/ChangeLog b/sci-electronics/spice/ChangeLog index 049a2a5b0185..4b9162fb09d5 100644 --- a/sci-electronics/spice/ChangeLog +++ b/sci-electronics/spice/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-electronics/spice -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/spice/ChangeLog,v 1.15 2011/09/08 14:20:46 ulm Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/spice/ChangeLog,v 1.16 2013/02/28 16:19:35 mr_bones_ Exp $ + + 28 Feb 2013; Michael Sterrett <mr_bones_@gentoo.org> -spice-3.5.5.ebuild: + old 08 Sep 2011; Ulrich Mueller <ulm@gentoo.org> spice-3.5.5-r1.ebuild: Update dependency on app-misc/editor-wrapper. diff --git a/sci-electronics/spice/spice-3.5.5.ebuild b/sci-electronics/spice/spice-3.5.5.ebuild deleted file mode 100644 index 6ca1bd611331..000000000000 --- a/sci-electronics/spice/spice-3.5.5.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/spice/spice-3.5.5.ebuild,v 1.7 2007/04/18 07:36:35 opfer Exp $ - -inherit eutils flag-o-matic multilib - -IUSE="" - -MY_P="spice3f5sfix" -DESCRIPTION="general-purpose circuit simulation program" -HOMEPAGE="http://bwrc.eecs.berkeley.edu/Classes/IcBook/SPICE/" -SRC_URI="http://www.ibiblio.org/pub/Linux/apps/circuits/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" - -RDEPEND="sys-libs/ncurses - x11-libs/libXaw" - -DEPEND="${RDEPEND} - x11-proto/xproto" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - # spice accepts -O1 at most - replace-flags -O* -O1 - - unpack ${A} - cd "${S}" - # Avoid re-creating WORKDIR due to stupid mtime - touch .. - - [ -z $EDITOR ] || EDITOR="vim" - sed -i -e "s:termcap:ncurses:g" \ - -e "s:joe:${EDITOR}:g" \ - -e "s:-O2 -s:${CFLAGS}:g" \ - -e "s:SPICE_DIR)/lib:SPICE_DIR)/$(get_libdir)/spice:g" \ - -e "s:/usr/local/spice:/usr:g" \ - -e "s:/X11R6::" \ - conf/linux - sed -i -e "s:head -1:head -n 1:" util/build - epatch "${FILESDIR}"/${P}-gcc-4.1.patch -} - -src_compile() { - ./util/build linux || die "build failed" - obj/bin/makeidx lib/helpdir/spice.txt || die "makeidx failed" -} - -src_install() { - cd "${S}" - # install binaries - dobin obj/bin/{spice3,nutmeg,sconvert,multidec,proc2mod} || die "failed to copy binaries" - newbin obj/bin/help spice.help - dosym /usr/bin/spice3 /usr/bin/spice - # install runtime stuff - rm -f lib/make* - dodir /usr/$(get_libdir)/spice - cp -R lib/* "${D}"/usr/$(get_libdir)/spice/ - # install docs - doman man/man1/*.1 - dodoc readme readme.Linux notes/spice2 -} |