commit: 8d881a77e4e4ed28561ab21abc39b1b2ff972b3b Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Wed Mar 1 11:44:52 2023 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Wed Mar 1 13:41:28 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d881a77
dev-embedded/mspdebug: update EAPI 6 -> 8 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> dev-embedded/mspdebug/mspdebug-0.25-r1.ebuild | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-embedded/mspdebug/mspdebug-0.25-r1.ebuild b/dev-embedded/mspdebug/mspdebug-0.25-r1.ebuild new file mode 100644 index 000000000000..1b68b8fafadc --- /dev/null +++ b/dev-embedded/mspdebug/mspdebug-0.25-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="A free debugger for use with MSP430 MCUs" +HOMEPAGE="https://dlbeer.co.nz/mspdebug/ https://github.com/dlbeer/mspdebug" +SRC_URI="https://github.com/dlbeer/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="readline" + +DEPEND="readline? ( sys-libs/readline:0= ) + virtual/libusb:0" +RDEPEND="${DEPEND}" + +src_prepare() { + default + sed -i "s:-O1 \(.*\) -ggdb:\1:" Makefile || die +} + +src_compile() { + emake CC="$(tc-getCC)" LIBDIR=/usr/$(get_libdir) $(usex readline "" "WITHOUT_READLINE=1") +} + +src_install() { + emake DESTDIR="${ED}" LIBDIR=/usr/$(get_libdir) PREFIX=/usr install + einstalldocs +}
