diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-12-14 17:07:15 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-12-14 17:07:15 +0100 |
commit | 19f9fa5659fd421895fff30af5a3d1d29b54e444 (patch) | |
tree | dcb09219c1f6f580fbfd8b8a964fa07b4347bd94 /app-misc | |
parent | app-portage/epkg: Drop EAPI-5 ebuild (diff) | |
download | gentoo-19f9fa5659fd421895fff30af5a3d1d29b54e444.tar.gz gentoo-19f9fa5659fd421895fff30af5a3d1d29b54e444.tar.bz2 gentoo-19f9fa5659fd421895fff30af5a3d1d29b54e444.zip |
app-misc/conmux: Drop EAPI-5 ebuild
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/conmux/Manifest | 1 | ||||
-rw-r--r-- | app-misc/conmux/conmux-0.15.1-r3.ebuild | 63 |
2 files changed, 0 insertions, 64 deletions
diff --git a/app-misc/conmux/Manifest b/app-misc/conmux/Manifest index f5e8eca99c8c..bf3d91260801 100644 --- a/app-misc/conmux/Manifest +++ b/app-misc/conmux/Manifest @@ -1,2 +1 @@ DIST autotest-0.16.4.tar.gz 14699617 BLAKE2B faae9fe2472ef6cde5868368d81eeb6b855af7684b407b307d14dbd7e8800506c4234b38b254a58b4d915290dcd61e6c9f2eb4d04cd3b929462b0a6d8ffc52cf SHA512 e209d008d7987610f20b7f0c932f8909a82bdde4c13f0362f54f5872464c76f1e3da5760d8eb0f42567249dee4db5f7802478be5c9798b46e2b421f31aa1cbdd -DIST conmux-0.15.1.tar.gz 50713 BLAKE2B d764d63f03318614ad0d7088911dee02fbd36d24da7dc988bb3db03cda3e60c5b185f50b5545b086e2a3a7b278aa47af7bfd211c39c88f7ada32e83666eea0c5 SHA512 8138d6d10b4382709828277503d1c23c52fd43109ebad79073be9003c39a9e62c2b7d9d6e78a9e81797c22871985e50a58df0d538ff63e3f580c9a229b520107 diff --git a/app-misc/conmux/conmux-0.15.1-r3.ebuild b/app-misc/conmux/conmux-0.15.1-r3.ebuild deleted file mode 100644 index e77e2b81776c..000000000000 --- a/app-misc/conmux/conmux-0.15.1-r3.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit perl-module - -DESCRIPTION="A console multiplexor" -HOMEPAGE="https://github.com/autotest/autotest" -SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~mips x86" -IUSE="" - -RDEPEND="dev-perl/IO-Multiplex - dev-perl/URI" -DEPEND="" - -src_prepare() { - # manual installation of drivers and helpers - sed -i -e "/include/d" Makefile || die "Failed to fix Makefile" -} - -src_install() { - perl_set_version - emake BASE="${D}/usr" install - # helpers and drivers have been removed in src_prepare - insinto /usr/share/${PN}/ - doins -r drivers/ helpers/ - fperms -R 0750 /usr/share/${PN}/{drivers,helpers}/ - dodir /etc/${PN} - # no need to have the init script in /sbin - rm "${D}"/usr/sbin/start || die "failed to remove init script" - # console is too generic. Make it conmux-console instead - mv "${D}"/usr/bin/console "${D}"/usr/bin/${PN}-console || \ - die "failed to rename console to conmux-console" - # Fix up directory for the module - perl_set_version - dodir ${VENDOR_LIB}/${PN} - mv "${D}"/usr/lib/Conmux.pm "${D}"/${VENDOR_LIB}/. || \ - die "failed to move the Conmux.pm module" - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newinitd "${FILESDIR}"/${PN}-registry.initd ${PN}-registry - newconfd "${FILESDIR}"/${PN}.confd ${PN} - newconfd "${FILESDIR}"/${PN}-registry.confd ${PN}-registry - dodoc README -} - -pkg_postinst() { - elog "" - elog "If you have more than one serial ports and you want to use all" - elog "of them with conmux, copy and paste the 'conmux' init.d and conf.d" - elog "files as many times as you want, pointing each conf.d file to the" - elog "device's configuration file." - elog "" - elog "See /etc/conf.d/conmux and" - elog "https://github.com/autotest/autotest/wiki/Conmux-OriginalDocumentation" - elog "https://github.com/autotest/autotest/wiki/Conmux-Howto" - elog "for more information" - elog "" -} |