From 4dcf03c7abb7e77299718c5afc2e6b270d15e832 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Wed, 17 Feb 2021 02:43:35 -0500 Subject: [PATCH] Add ebuild for slotifier. Since there are actual release tarballs now why not make an ebuild too. --- sci-electronics/slotifier/Manifest | 2 ++ .../slotifier/slotifier-1.1.ebuild | 25 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 sci-electronics/slotifier/Manifest create mode 100644 sci-electronics/slotifier/slotifier-1.1.ebuild diff --git a/sci-electronics/slotifier/Manifest b/sci-electronics/slotifier/Manifest new file mode 100644 index 0000000..78c9ddb --- /dev/null +++ b/sci-electronics/slotifier/Manifest @@ -0,0 +1,2 @@ +DIST slotifier-1.1.tar.xz 429624 BLAKE2B a0476d34c79de8d800b6705f940b11e58bfa314e35da13e54f0cac05e115d1a5ff7c6d866f82599bc2f9b89a680cbde34079ef9d6de6e6ca59449ae72ad1bf4d SHA512 ca481e2f2bab28dd024f6411562666bb95cdbae680e0c9b8ff0ce0f96a8fefa55c1ab45d0393a7b074790b6f690e5a06a9ebcb13e9890132b40cff537ddb3592 +EBUILD slotifier-1.1.ebuild 652 BLAKE2B 1db4d55210948d4b741042fed709b65bc09f9ea1dac8dce92a130fde3953a10480b432925a0456fa4be25da5df1da8dd5949c6258553613e394448fe91f2bf36 SHA512 de089c0209dde448943cc0f5980a709457d420697c9034962e94ceb87c6f6a60c93e2086af52601f151f82598b00db8ddf7ecdfd9ea7d71202a9d19876997f31 diff --git a/sci-electronics/slotifier/slotifier-1.1.ebuild b/sci-electronics/slotifier/slotifier-1.1.ebuild new file mode 100644 index 0000000..4ee6704 --- /dev/null +++ b/sci-electronics/slotifier/slotifier-1.1.ebuild @@ -0,0 +1,25 @@ +# Copyright © 2021 Nick Bowler +# License GPLv3+: GNU General Public License version 3 or any later version. +# This is free software: you are free to change and redistribute it. +# There is NO WARRANTY, to the extent permitted by law. + +EAPI=7 + +DESCRIPTION="Convert overlapping drill hits to Excellon G85 drill slots" +HOMEPAGE="http://draconx.ca/projects/slotifier/" +SRC_URI="http://draconx.ca/archive/$PN/$P.tar.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +BDEPEND="virtual/pkgconfig" +DEPEND="nls? ( virtual/libintl ) + >=sci-electronics/gerbv-2.7.0 + sci-libs/neartree" +RDEPEND=$DEPEND + +src_configure () { + econf $(use_enable nls) +} -- 2.43.2