diff options
author | David Seifert <soap@gentoo.org> | 2023-02-20 21:51:33 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-02-20 21:51:33 +0100 |
commit | 97e1c35454a1ea4f47cb20d7092899f6ca443447 (patch) | |
tree | 48b4e0c73f5e87a0447507448dff2f0572d5f9bb /x11-libs | |
parent | x11-drivers/xf86-input-mtrack: update EAPI 6 -> 8 (diff) | |
download | gentoo-97e1c35454a1ea4f47cb20d7092899f6ca443447.tar.gz gentoo-97e1c35454a1ea4f47cb20d7092899f6ca443447.tar.bz2 gentoo-97e1c35454a1ea4f47cb20d7092899f6ca443447.zip |
x11-libs/dnd: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/dnd/dnd-1.1-r4.ebuild (renamed from x11-libs/dnd/dnd-1.1-r3.ebuild) | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/x11-libs/dnd/dnd-1.1-r3.ebuild b/x11-libs/dnd/dnd-1.1-r4.ebuild index 09bc04cde8f6..4a703c80c2b6 100644 --- a/x11-libs/dnd/dnd-1.1-r3.ebuild +++ b/x11-libs/dnd/dnd-1.1-r4.ebuild @@ -1,19 +1,21 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit toolchain-funcs DESCRIPTION="OffiX' Drag'n'drop library" HOMEPAGE="http://leb.net/offix" SRC_URI="http://leb.net/offix/${PN}.${PV}.tgz" +S="${WORKDIR}/DND/DNDlib" LICENSE="GPL-2 LGPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -RDEPEND="x11-libs/libICE +RDEPEND=" + x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXaw @@ -27,13 +29,12 @@ PATCHES=( "${FILESDIR}"/Makefile-fix.patch ) -S="${WORKDIR}/DND/DNDlib" +DOCS=( + # README is useless + CHANGELOG +) src_configure() { tc-export CC CXX RANLIB AR econf --with-x } - -src_install() { - emake DESTDIR="${D}" install -} |