diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-04-28 01:16:39 +1100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-04-28 01:16:39 +1100 |
commit | 52b2ef32496775297dd6dada5b7d7ab3f47faf5d (patch) | |
tree | 04e1b98189c79e9a8c66ee8c64e88941a9130b07 /sci-libs/linux-gpib-modules | |
parent | sci-libs/linux-gpib-modules: add 4.3.6 (diff) | |
download | gentoo-52b2ef32496775297dd6dada5b7d7ab3f47faf5d.tar.gz gentoo-52b2ef32496775297dd6dada5b7d7ab3f47faf5d.tar.bz2 gentoo-52b2ef32496775297dd6dada5b7d7ab3f47faf5d.zip |
sci-libs/linux-gpib-modules: drop 4.3.5
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sci-libs/linux-gpib-modules')
-rw-r--r-- | sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5.ebuild b/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5.ebuild deleted file mode 100644 index fb572031d1ee..000000000000 --- a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit linux-info linux-mod - -DESCRIPTION="Kernel modules for GPIB (IEEE 488.2) hardware" -HOMEPAGE="https://linux-gpib.sourceforge.io/" -SRC_URI="mirror://sourceforge/linux-gpib/linux-gpib-${PV}.tar.gz" -S="${WORKDIR}/linux-gpib-kernel-${PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~x86" -IUSE="debug" - -COMMONDEPEND="" -RDEPEND="${COMMONDEPEND} - acct-group/gpib -" -DEPEND="${COMMONDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - # don't fix debian bugs if they break gentoo - "${FILESDIR}/${PN}-4.3.4-depmod.patch" -) - -pkg_setup() { - linux-mod_pkg_setup - - if kernel_is -lt 2 6 8; then - die "Kernel versions older than 2.6.8 are not supported." - fi -} - -src_unpack() { - default - unpack "${WORKDIR}/linux-gpib-${PV}/linux-gpib-kernel-${PV}.tar.gz" -} - -src_configure() { - set_arch_to_kernel - - my_gpib_makeopts='' - use debug && my_gpib_makeopts+='GPIB-DEBUG=1 ' - - my_gpib_makeopts+="LINUX_SRCDIR=${KERNEL_DIR} " -} - -src_compile() { - set_arch_to_kernel - emake \ - ${my_gpib_makeopts} -} - -src_install() { - set_arch_to_kernel - emake \ - DESTDIR="${ED}" \ - INSTALL_MOD_PATH="${ED}" \ - DEPMOD="/bin/true" \ - docdir="${ED}/usr/share/doc/${PF}/html" \ - ${my_gpib_makeopts} \ - install - - dodoc ChangeLog AUTHORS README* NEWS -} |