diff options
author | 2023-08-25 10:45:36 +0300 | |
---|---|---|
committer | 2023-08-25 10:46:39 +0300 | |
commit | 33de6798ac9a071c5d79971e64816fb103ae8c99 (patch) | |
tree | cae25214a4e10c264120a0a1ab679755554f84f6 /net-dialup | |
parent | net-dialup/minicom: add large file support (diff) | |
download | gentoo-33de6798ac9a071c5d79971e64816fb103ae8c99.tar.gz gentoo-33de6798ac9a071c5d79971e64816fb103ae8c99.tar.bz2 gentoo-33de6798ac9a071c5d79971e64816fb103ae8c99.zip |
net-dialup/minicom: drop 2.8-r3
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/minicom/minicom-2.8-r3.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/net-dialup/minicom/minicom-2.8-r3.ebuild b/net-dialup/minicom/minicom-2.8-r3.ebuild deleted file mode 100644 index cd9a960d5175..000000000000 --- a/net-dialup/minicom/minicom-2.8-r3.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# 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 - https://dev.gentoo.org/~ceamac/${CATEGORY}/${PN}/${PN}-m4-${PV}.tar.bz2 -" - -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 - - # 912459 - # Embed the needed m4 macros if gettext is not installed - mv "${WORKDIR}"/m4 . || die - - 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 -} |