diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2003-11-30 19:04:53 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2003-11-30 19:04:53 +0000 |
commit | 5104196695cfbda15ef50857e4fcd8e98579d6bc (patch) | |
tree | a58bef87ea21f5d0d81765c180b013a3015aa3a2 /app-sci/vbs | |
parent | Initial import... (diff) | |
download | historical-5104196695cfbda15ef50857e4fcd8e98579d6bc.tar.gz historical-5104196695cfbda15ef50857e4fcd8e98579d6bc.tar.bz2 historical-5104196695cfbda15ef50857e4fcd8e98579d6bc.zip |
Initial import...
Diffstat (limited to 'app-sci/vbs')
-rw-r--r-- | app-sci/vbs/Manifest | 4 | ||||
-rw-r--r-- | app-sci/vbs/files/digest-vbs-1.4.0 | 1 | ||||
-rw-r--r-- | app-sci/vbs/metadata.xml | 8 | ||||
-rw-r--r-- | app-sci/vbs/vbs-1.4.0.ebuild | 34 |
4 files changed, 45 insertions, 2 deletions
diff --git a/app-sci/vbs/Manifest b/app-sci/vbs/Manifest index 9836258ba1ab..b79a9b15fc9e 100644 --- a/app-sci/vbs/Manifest +++ b/app-sci/vbs/Manifest @@ -1,4 +1,4 @@ -MD5 d38ad9fbf5e66dff1e4d6c209380188f ChangeLog 223 -MD5 f25cfec2801a979de6322b45d87b44bc vbs-1.4.0.ebuild 666 +MD5 84f3b479203064bfe9a5afb36735b0fe ChangeLog 310 +MD5 b06732b3e9a8f93b110ae32ec3f96694 vbs-1.4.0.ebuild 760 MD5 e49bb02132d2cd74ad4e6ee291e102d9 metadata.xml 220 MD5 22a114171374699f394635225aecca7e files/digest-vbs-1.4.0 61 diff --git a/app-sci/vbs/files/digest-vbs-1.4.0 b/app-sci/vbs/files/digest-vbs-1.4.0 new file mode 100644 index 000000000000..c4a22a0408b9 --- /dev/null +++ b/app-sci/vbs/files/digest-vbs-1.4.0 @@ -0,0 +1 @@ +MD5 07619d3dbfc030639d8ed1271f792d62 vbs-1.4.0.tar.gz 275974 diff --git a/app-sci/vbs/metadata.xml b/app-sci/vbs/metadata.xml new file mode 100644 index 000000000000..e2035cdbb121 --- /dev/null +++ b/app-sci/vbs/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sci</herd> +<maintainer> + <email>plasmaroo@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/app-sci/vbs/vbs-1.4.0.ebuild b/app-sci/vbs/vbs-1.4.0.ebuild new file mode 100644 index 000000000000..c6a76f28bfab --- /dev/null +++ b/app-sci/vbs/vbs-1.4.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. and Tim Yamin <plasmaroo@gentoo.org> <plasmaroo@squirrelsoft.org.uk> +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/vbs/vbs-1.4.0.ebuild,v 1.1 2003/11/30 19:04:46 plasmaroo Exp $ + +HOMEPAGE="http://www.geda.seul.org/tools/vbs/index.html" +DESCRIPTION="vbs - the Verilog Behavioral Simulator" +SRC_URI="http://www.geda.seul.org/dist/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND=">=sys-devel/flex-2.3 + >=sys-devel/bison-1.22" + +src_compile () { + + cd src + econf || die + emake vbs || die + +} + +src_install () { + + dodoc BUGS CONTRIBUTORS COPYRIGHT FAQ README vbs.txt + + docinto examples + dodoc EXAMPLES/* + + exeinto /usr/bin + doexe src/vbs + +} |