commit: ff0deccebd4c7163fe50ac3a8642445a2f3189a3 Author: Huang Rui <vowstar <AT> gmail <DOT> com> AuthorDate: Sun Feb 23 06:54:44 2020 +0000 Commit: Rui Huang <vowstar <AT> gmail <DOT> com> CommitDate: Sun Feb 23 06:54:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ff0decce
sci-electronics/verilator: add 9999 ebuild Add verilator-9999.ebuild to get the latest software Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Huang Rui <vowstar <AT> gmail.com> sci-electronics/verilator/verilator-9999.ebuild | 39 +++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/sci-electronics/verilator/verilator-9999.ebuild b/sci-electronics/verilator/verilator-9999.ebuild new file mode 100644 index 0000000..80f4993 --- /dev/null +++ b/sci-electronics/verilator/verilator-9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="The fast free Verilog/SystemVerilog simulator" +HOMEPAGE="https://www.veripool.org/wiki/verilator" + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://git.veripool.org/git/${PN}" +else + SRC_URI="http://www.veripool.org/ftp/${P}.tgz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86" +fi + +LICENSE="|| ( Artistic-2 LGPL-3 )" +SLOT="0" + +DEPEND=" + dev-lang/perl + sys-libs/zlib +" + +RDEPEND=" + ${DEPEND} +" + +BDEPEND=" + sys-devel/bison + sys-devel/flex +" + +src_prepare() { + default + eautoconf --force +}
