commit: 93231e0d66f0029dff08a3c699c53ac9280b759b Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Mon Feb 23 06:23:56 2026 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Mon Feb 23 07:57:37 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93231e0d
net-dialup/minicom: add 2.11 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> net-dialup/minicom/Manifest | 1 + net-dialup/minicom/minicom-2.11.ebuild | 60 ++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) diff --git a/net-dialup/minicom/Manifest b/net-dialup/minicom/Manifest index 0fd1fce83880..747567ab7366 100644 --- a/net-dialup/minicom/Manifest +++ b/net-dialup/minicom/Manifest @@ -1 +1,2 @@ DIST minicom-2.10.tar.gz 798751 BLAKE2B 1828b2670a71f8c94099cabc49b1e85ad35bd0491a78fe99a92d32176811d25b76afa74b417491f44bec40c1a7273e1bbc0ab9729dfa2626291b069b4447b919 SHA512 ced271a21b0ba97ad0b09093f341112d4c4f64f6b72631502acc136d2fb92eeb14965d4187fd8cfed0e0e2519b603b6e54d8dd780e666119ecfc5677203595e2 +DIST minicom-2.11.tar.gz 1058532 BLAKE2B d99be5514e5f69216cdb99c81a9bdedcd26a0712df01c3403a6fa7243050b84d2035542810363c4d33c17c3caad93c499cc1a93729741ea1980b2e478890085b SHA512 097be8596b64fd749f5b3b524be554be51bbe308219c3068a3413c1d7e66c90aed5862c5dc7120368ada0767c18f6982559864a7e874b3d581477e36f233ba82 diff --git a/net-dialup/minicom/minicom-2.11.ebuild b/net-dialup/minicom/minicom-2.11.ebuild new file mode 100644 index 000000000000..140d360efc86 --- /dev/null +++ b/net-dialup/minicom/minicom-2.11.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Serial Communication Program" +HOMEPAGE="https://salsa.debian.org/minicom-team/minicom" +SRC_URI="https://salsa.debian.org/${PN}-team/${PN}/-/archive/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="nls" + +DEPEND="sys-libs/ncurses:=" + +RDEPEND=" + ${DEPEND} + net-dialup/lrzsz +" + +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-2.8-gentoo-runscript.patch + "${FILESDIR}"/${PN}-2.9-update-gettext.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + # Lockdir must exist if not manually specified. + # '/var/lock' is created by OpenRC. + local myeconfargs=( + # See bug #788142 + --sysconfdir="${EPREFIX}"/etc/${PN} + + --disable-rpath + --enable-lock-dir="/var/lock" + $(use_enable nls) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + + # Needs to match --sysconfdir above + insinto /etc/minicom + doins "${FILESDIR}"/minirc.dfl +}
