diff options
author | Sam James <sam@gentoo.org> | 2022-07-15 13:14:40 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-15 13:14:40 +0100 |
commit | aeec1591b9bd27f1f4e224eed6a5d9ee00cc0f2f (patch) | |
tree | e412893eb83b99c623553277988ccd63bc45e572 /sci-libs | |
parent | app-misc/astrolog-ephemeris: Stabilize 7.40 amd64, #858173 (diff) | |
download | gentoo-aeec1591b9bd27f1f4e224eed6a5d9ee00cc0f2f.tar.gz gentoo-aeec1591b9bd27f1f4e224eed6a5d9ee00cc0f2f.tar.bz2 gentoo-aeec1591b9bd27f1f4e224eed6a5d9ee00cc0f2f.zip |
sci-libs/linux-gpib-modules: drop 4.3.4
Bug: https://bugs.gentoo.org/858170
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.4.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.4.ebuild b/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.4.ebuild deleted file mode 100644 index a5c44ee72549..000000000000 --- a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.4.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit linux-info linux-mod toolchain-funcs - -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" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~x86" -IUSE="debug" - -COMMONDEPEND="" -RDEPEND="${COMMONDEPEND} - acct-group/gpib - !<sci-libs/linux-gpib-4.2.0_rc1 -" -DEPEND="${COMMONDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/linux-gpib-kernel-${PV} - -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 \ - DESTDIR="${D}" \ - INSTALL_MOD_PATH="${D}" \ - docdir=/usr/share/doc/${PF}/html \ - ${my_gpib_makeopts} -} - -src_install() { - set_arch_to_kernel - emake \ - DESTDIR="${D}" \ - INSTALL_MOD_PATH="${D}" \ - DEPMOD="/bin/true" \ - docdir=/usr/share/doc/${PF}/html \ - ${my_gpib_makeopts} \ - install - - dodoc ChangeLog AUTHORS README* NEWS -} |