Add new pacakges

This commit is contained in:
Mario Fetka
2022-02-23 19:17:30 +01:00
parent 123ebbf1df
commit de2b917a03
175 changed files with 1143 additions and 10915 deletions

View File

@@ -0,0 +1,2 @@
DIST adms-2.3.7-source.tar.gz 184339 BLAKE2B dfa3835b095658b488ae939da7444fc6e44f2c8107a5771ddf50981e80ac6913341c1ec29bae4fa55705cf8087c7cc815d5786f75565e299f7d59912afbc3731 SHA512 f166675885c0e2c3eeacb838b62e6bb4edbef47e54841e477395cc21170087f37cfdfac668d9a2c026838b31cb52c8d58ba42b832a29cd74cbee8561d7e6838e
EBUILD adms-2.3.7.ebuild 652 BLAKE2B 2557a45ba9276064f164f4c9af93ed6f218d73c4dbd793fd544594cbd137900fbf6b3cfe4ea579bf2a43418599bfa0850e88ae7c19bbd3496d63f17f5b418e51 SHA512 ef5b5a14cb4129c197494d49ff2076f36eee7456b0bf89f247e38f24002cd2542e79f72b14c659e6cde45148b11bae654f1f70b27e588066f0639ba7a1dddc6a

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="ADMS is a code generator for the Verilog-AMS language"
HOMEPAGE="https://github.com/Qucs/ADMS"
SRC_URI="https://github.com/Qucs/ADMS/archive/release-${PV//_/-}.tar.gz -> adms-${PV}-source.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
sys-devel/flex
sys-devel/bison"
DEPEND="
dev-perl/XML-LibXML
$RDEPEND"
S=${WORKDIR}/ADMS-release-${PV}
src_prepare() {
default
./bootstrap.sh
}
src_configure() {
local myeconfargs=(
--enable-maintainer-mode
)
econf $myeconfargs
}