diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2007-02-27 18:51:59 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2007-02-27 18:51:59 +0000 |
commit | 1bf00b2027ce932ba33d7c153246c3b8a9e3380e (patch) | |
tree | e4f8deb3f9c23c29c251d2d53eb6cca8100a08b8 /sci-electronics/gnucap | |
parent | Stable on ppc wrt bug #163817. (diff) | |
download | gentoo-2-1bf00b2027ce932ba33d7c153246c3b8a9e3380e.tar.gz gentoo-2-1bf00b2027ce932ba33d7c153246c3b8a9e3380e.tar.bz2 gentoo-2-1bf00b2027ce932ba33d7c153246c3b8a9e3380e.zip |
Removed old and badly named snapshots, finally.
(Portage version: 2.1.2-r11)
Diffstat (limited to 'sci-electronics/gnucap')
-rw-r--r-- | sci-electronics/gnucap/ChangeLog | 6 | ||||
-rw-r--r-- | sci-electronics/gnucap/files/digest-gnucap-20060708 | 3 | ||||
-rw-r--r-- | sci-electronics/gnucap/files/digest-gnucap-20060830 | 3 | ||||
-rw-r--r-- | sci-electronics/gnucap/gnucap-20060708.ebuild | 58 | ||||
-rw-r--r-- | sci-electronics/gnucap/gnucap-20060830.ebuild | 44 |
5 files changed, 5 insertions, 109 deletions
diff --git a/sci-electronics/gnucap/ChangeLog b/sci-electronics/gnucap/ChangeLog index ba4461def26e..f9124d23129b 100644 --- a/sci-electronics/gnucap/ChangeLog +++ b/sci-electronics/gnucap/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-electronics/gnucap # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gnucap/ChangeLog,v 1.35 2007/02/27 15:09:35 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gnucap/ChangeLog,v 1.36 2007/02/27 18:51:59 calchan Exp $ + + 27 Feb 2007; Denis Dupeyron <calchan@gentoo.org> -gnucap-20060708.ebuild, + -gnucap-20060830.ebuild: + Removed old and badly named snapshots, finally. 27 Feb 2007; Simon Stelling <blubb@gentoo.org> gnucap-0.35.ebuild: stable on amd64; bug 165283 diff --git a/sci-electronics/gnucap/files/digest-gnucap-20060708 b/sci-electronics/gnucap/files/digest-gnucap-20060708 deleted file mode 100644 index 6d60c72c3194..000000000000 --- a/sci-electronics/gnucap/files/digest-gnucap-20060708 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 d34fc4919ce8e949dc43d52b781753e5 gnucap-2006-07-08.tar.gz 1546670 -RMD160 8006dffd189095b81dbf7358caacea870bc054df gnucap-2006-07-08.tar.gz 1546670 -SHA256 311562626876459cc265dcc09ac0673384454c0fbee8e4839c888991b0578094 gnucap-2006-07-08.tar.gz 1546670 diff --git a/sci-electronics/gnucap/files/digest-gnucap-20060830 b/sci-electronics/gnucap/files/digest-gnucap-20060830 deleted file mode 100644 index 9b4dfdbb53f6..000000000000 --- a/sci-electronics/gnucap/files/digest-gnucap-20060830 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 1561136beb32f04cab4f245ade0861db gnucap-2006-08-30.tar.gz 1008949 -RMD160 000edb52fa0da0f7376a1d463de31101713996f4 gnucap-2006-08-30.tar.gz 1008949 -SHA256 d01989ab7dbf980d0f308033fd2e57146a0dbf3254161f1e8d8a49c5882311bc gnucap-2006-08-30.tar.gz 1008949 diff --git a/sci-electronics/gnucap/gnucap-20060708.ebuild b/sci-electronics/gnucap/gnucap-20060708.ebuild deleted file mode 100644 index 0f56332c2173..000000000000 --- a/sci-electronics/gnucap/gnucap-20060708.ebuild +++ /dev/null @@ -1,58 +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/gnucap/gnucap-20060708.ebuild,v 1.11 2007/02/13 20:06:27 calchan Exp $ - -MY_PV="${PV:0:4}-${PV:4:2}-${PV:6}" - -DESCRIPTION="GNUCap is the GNU Circuit Analysis Package" -SRC_URI="http://geda.seul.org/dist/gnucap-${MY_PV}.tar.gz" -HOMEPAGE="http://www.geda.seul.org/tools/gnucap" - -IUSE="doc examples readline" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64" - -DEPEND="doc? ( virtual/tetex ) - readline? ( sys-libs/readline )" -S="${WORKDIR}/${PN}-${MY_PV}" - -src_unpack() { - unpack ${A} || die "Failed to unpack!" - cd ${S} - - # Don't let gnucap decide whether to use readline - if ! use readline ; then - sed -i \ - -e 's:LIBS="-lreadline $LIBS":LIBS="$LIBS":' \ - -e 's:#define HAVE_LIBREADLINE 1:#define HAVE_LIBREADLINE 0:' \ - configure || die "sed failed" - fi - - # No need to install COPYING and INSTALL - sed -i \ - -e 's: COPYING INSTALL::' \ - -e 's:COPYING history INSTALL:history:' \ - doc/Makefile.in || die "sed failed" - - if ! use doc ; then - sed -i \ - -e 's:SUBDIRS = doc examples man:SUBDIRS = doc examples:' \ - Makefile.in || die "sed failed" - fi - - if ! use examples ; then - sed -i \ - -e 's:SUBDIRS = doc examples:SUBDIRS = doc:' \ - Makefile.in || die "sed failed" - fi -} - -src_compile() { - econf || die "Configuration failed" - emake || die "Compilation failed" -} - -src_install () { - make DESTDIR=${D} install || die "Installation failed" -} diff --git a/sci-electronics/gnucap/gnucap-20060830.ebuild b/sci-electronics/gnucap/gnucap-20060830.ebuild deleted file mode 100644 index 883b8c6265b8..000000000000 --- a/sci-electronics/gnucap/gnucap-20060830.ebuild +++ /dev/null @@ -1,44 +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/gnucap/gnucap-20060830.ebuild,v 1.7 2007/02/13 20:06:27 calchan Exp $ - -MY_PV="${PV:0:4}-${PV:4:2}-${PV:6}" - -DESCRIPTION="GNUCap is the GNU Circuit Analysis Package" -SRC_URI="http://geda.seul.org/dist/gnucap-${MY_PV}.tar.gz" -HOMEPAGE="http://www.geda.seul.org/tools/gnucap" - -IUSE="doc examples" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64" - -DEPEND="doc? ( virtual/tetex )" -S="${WORKDIR}/${PN}-${MY_PV}" - -src_unpack() { - unpack ${A} || die "Failed to unpack!" - cd ${S} - - # No need to install COPYING and INSTALL - sed -i \ - -e 's: COPYING INSTALL::' \ - -e 's:COPYING history INSTALL:history:' \ - doc/Makefile.in || die "sed failed" - - if ! use doc ; then - sed -i \ - -e 's:SUBDIRS = doc examples man:SUBDIRS = doc examples:' \ - Makefile.in || die "sed failed" - fi - - if ! use examples ; then - sed -i \ - -e 's:SUBDIRS = doc examples:SUBDIRS = doc:' \ - Makefile.in || die "sed failed" - fi -} - -src_install () { - make DESTDIR=${D} install || die "Installation failed" -} |