diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2009-06-06 22:48:09 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2009-06-06 22:48:09 +0000 |
commit | 60f59b52b896ff52d7072ca533a6ee938db1509f (patch) | |
tree | 514a04f618f1a4f8134104203a34b03791cef24e /sci-electronics/gnetman | |
parent | Version bump. (diff) | |
download | gentoo-2-60f59b52b896ff52d7072ca533a6ee938db1509f.tar.gz gentoo-2-60f59b52b896ff52d7072ca533a6ee938db1509f.tar.bz2 gentoo-2-60f59b52b896ff52d7072ca533a6ee938db1509f.zip |
Ebuild mostly rewritten, fixed bug #271177.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'sci-electronics/gnetman')
-rw-r--r-- | sci-electronics/gnetman/ChangeLog | 10 | ||||
-rw-r--r-- | sci-electronics/gnetman/gnetman-0.0.1_pre20060522-r1.ebuild | 40 |
2 files changed, 48 insertions, 2 deletions
diff --git a/sci-electronics/gnetman/ChangeLog b/sci-electronics/gnetman/ChangeLog index efc8f445744a..87ee0ccea860 100644 --- a/sci-electronics/gnetman/ChangeLog +++ b/sci-electronics/gnetman/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-electronics/gnetman -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gnetman/ChangeLog,v 1.9 2007/02/21 18:38:01 calchan Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gnetman/ChangeLog,v 1.10 2009/06/06 22:48:09 calchan Exp $ + +*gnetman-0.0.1_pre20060522-r1 (06 Jun 2009) + + 06 Jun 2009; Denis Dupeyron <calchan@gentoo.org> + +gnetman-0.0.1_pre20060522-r1.ebuild: + Ebuild mostly rewritten, fixed bug #271177. 21 Feb 2007; Denis Dupeyron <calchan@gentoo.org> files/digest-gnetman-0.0.1_pre20041222, Manifest: diff --git a/sci-electronics/gnetman/gnetman-0.0.1_pre20060522-r1.ebuild b/sci-electronics/gnetman/gnetman-0.0.1_pre20060522-r1.ebuild new file mode 100644 index 000000000000..4c95124bdcd9 --- /dev/null +++ b/sci-electronics/gnetman/gnetman-0.0.1_pre20060522-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gnetman/gnetman-0.0.1_pre20060522-r1.ebuild,v 1.1 2009/06/06 22:48:09 calchan Exp $ + +EAPI=2 + +MY_P="${PN}-22May06" + +DESCRIPTION="A GNU Netlist Manipulation Library" +SRC_URI="http://www.viasic.com/opensource/${MY_P}.tar.gz" +HOMEPAGE="http://www.viasic.com/opensource/" + +IUSE="doc examples" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~x86" + +S="${WORKDIR}/${MY_P}" + +DEPEND=">=dev-lang/tk-8.3 + sci-electronics/geda-symbols" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i -e 's/ sym / /' Makefile.in || die "sed failed" + if use examples ; then + sed -i -e "s:gEDA/sch/gnetman:doc/${PF}/examples:" \ + sch/Makefile.in || die "sed failed" + sed -i -e "s:gEDA/examples/gnetman:doc/${PF}/examples:" \ + test/Makefile.in || die "sed failed" + else + sed -i -e 's/ sch test//' Makefile.in || die "sed failed" + fi +} + +src_install () { + make DESTDIR="${D}" install || die "Installation failed" + dodoc AUTHORS ChangeLog NEWS README + use doc && dodoc doc/*.{html,jpg} +} |