diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-12-27 20:18:22 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-12-27 20:18:22 +0000 |
commit | 6494522584dbfe951e6bffc26fa7fceaee6b030a (patch) | |
tree | 724178d6995948aeb92ada984fda9e4403e04391 /sci-electronics/petrify | |
parent | Moving to sci-electronics/petrify (diff) | |
download | gentoo-2-6494522584dbfe951e6bffc26fa7fceaee6b030a.tar.gz gentoo-2-6494522584dbfe951e6bffc26fa7fceaee6b030a.tar.bz2 gentoo-2-6494522584dbfe951e6bffc26fa7fceaee6b030a.zip |
Moved from app-sci/petrify to sci-electronics/petrify.
Diffstat (limited to 'sci-electronics/petrify')
-rw-r--r-- | sci-electronics/petrify/ChangeLog | 16 | ||||
-rw-r--r-- | sci-electronics/petrify/Manifest | 4 | ||||
-rw-r--r-- | sci-electronics/petrify/files/digest-petrify-4.2 | 1 | ||||
-rw-r--r-- | sci-electronics/petrify/metadata.xml | 9 | ||||
-rw-r--r-- | sci-electronics/petrify/petrify-4.2.ebuild | 26 |
5 files changed, 56 insertions, 0 deletions
diff --git a/sci-electronics/petrify/ChangeLog b/sci-electronics/petrify/ChangeLog new file mode 100644 index 000000000000..ac2d048811dd --- /dev/null +++ b/sci-electronics/petrify/ChangeLog @@ -0,0 +1,16 @@ +# ChangeLog for app-sci/petrify +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/petrify/ChangeLog,v 1.1 2004/12/27 20:18:22 ribosome Exp $ + +*petrify-4.2 (27 Dec 2004) + + 27 Dec 2004; Olivier Fisette <ribosome@gentoo.org> +metadata.xml, + +petrify-4.2.ebuild: + Moved from app-sci/petrify to sci-electronics/petrify. + +*petrify-4.2 (23 Jul 2004) + + 23 Jul 2004; Chris Bainbridge <chrb@gentoo.org> +metadata.xml, + +petrify-4.2.ebuild: + Submitted by Chris Bainbridge, bug #35465 + diff --git a/sci-electronics/petrify/Manifest b/sci-electronics/petrify/Manifest new file mode 100644 index 000000000000..ef275602bcf5 --- /dev/null +++ b/sci-electronics/petrify/Manifest @@ -0,0 +1,4 @@ +MD5 dd79fa36934b6688f882db778cfbb46c metadata.xml 337 +MD5 ed1367e840d5468ba3e8801f0c76b459 petrify-4.2.ebuild 844 +MD5 37a96f5c2dc103dfe2f13867710cfece ChangeLog 362 +MD5 0467469170b6ef7ae8aff2608689200b files/digest-petrify-4.2 67 diff --git a/sci-electronics/petrify/files/digest-petrify-4.2 b/sci-electronics/petrify/files/digest-petrify-4.2 new file mode 100644 index 000000000000..1cd867a47551 --- /dev/null +++ b/sci-electronics/petrify/files/digest-petrify-4.2 @@ -0,0 +1 @@ +MD5 a72708915daca998cc0b36404bec6fbd petrify-4.2-linux.tgz 1117093 diff --git a/sci-electronics/petrify/metadata.xml b/sci-electronics/petrify/metadata.xml new file mode 100644 index 000000000000..3f9567f925a2 --- /dev/null +++ b/sci-electronics/petrify/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>chrb@gentoo.org</email> + <name>Chris Bainbridge</name> + </maintainer> + <longdescription>Synthesize Petri nets into asynchronous circuits</longdescription> +</pkgmetadata> diff --git a/sci-electronics/petrify/petrify-4.2.ebuild b/sci-electronics/petrify/petrify-4.2.ebuild new file mode 100644 index 000000000000..e4616fd99c40 --- /dev/null +++ b/sci-electronics/petrify/petrify-4.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/petrify/petrify-4.2.ebuild,v 1.1 2004/12/27 20:18:22 ribosome Exp $ + +DESCRIPTION="Synthesize Petri nets into asynchronous circuits" +HOMEPAGE="http://www.lsi.upc.es/~jordic/petrify/" +SRC_URI="http://www.lsi.upc.es/~jordic/petrify/distrib/petrify-4.2-linux.tgz" +LICENSE="petrify" +KEYWORDS="~x86" +RESTRICT="nostrip" +RDEPEND="media-gfx/graphviz" +SLOT="0" + +src_install () { + cd ${WORKDIR}/petrify + dodir /opt/petrify + exeinto /opt/petrify + doexe bin/petrify + dosym /opt/petrify/petrify /opt/petrify/draw_astg + dosym /opt/petrify/petrify /opt/petrify/write_sg + dodoc doc/* + doman man/man1/* + cp -a lib/petrify.lib ${D}/opt/petrify + dodir /etc/env.d + echo "PATH=/opt/petrify" > ${D}/etc/env.d/00petrify +} |