diff options
author | Viorel Munteanu <ceamac@gentoo.org> | 2023-03-19 08:27:24 +0200 |
---|---|---|
committer | Viorel Munteanu <ceamac@gentoo.org> | 2023-03-19 08:49:33 +0200 |
commit | d7aa4284f78b05a1f504631aedf95a95c2c8fc7f (patch) | |
tree | b00359178372f68dc516ef6eddac78d8f47ae9e7 /net-dialup/minicom | |
parent | net-p2p/biglybt: add 3.3.0.0, drop 3.2.0.0-r2 (diff) | |
download | gentoo-d7aa4284f78b05a1f504631aedf95a95c2c8fc7f.tar.gz gentoo-d7aa4284f78b05a1f504631aedf95a95c2c8fc7f.tar.bz2 gentoo-d7aa4284f78b05a1f504631aedf95a95c2c8fc7f.zip |
net-dialup/minicom: update EAPI 7 -> 8
Remove weird /etc/minicom/minirc.dfl logic.
Closes: https://bugs.gentoo.org/885709
Closes: https://github.com/gentoo/gentoo/pull/30228
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'net-dialup/minicom')
-rw-r--r-- | net-dialup/minicom/minicom-2.8-r2.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/net-dialup/minicom/minicom-2.8-r2.ebuild b/net-dialup/minicom/minicom-2.8-r2.ebuild new file mode 100644 index 000000000000..6a31287bdcb2 --- /dev/null +++ b/net-dialup/minicom/minicom-2.8-r2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2023 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 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +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.8-lockdir.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 +} |