commit: 6a5d15b5f4e8a67bfc752d79ac5676302a9352c9 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Thu Apr 27 16:38:59 2023 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Thu Apr 27 21:45:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a5d15b5
sys-apps/chname: EAPI8 bump Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/30778 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> sys-apps/chname/chname-1.1-r1.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/sys-apps/chname/chname-1.1-r1.ebuild b/sys-apps/chname/chname-1.1-r1.ebuild new file mode 100644 index 000000000000..c7d8a16b1961 --- /dev/null +++ b/sys-apps/chname/chname-1.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Run a command with a new system hostname" +HOMEPAGE="https://github.com/marineam/chname" +SRC_URI="https://github.com/marineam/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=sys-kernel/linux-headers-2.6.16" + +PATCHES=( + "${FILESDIR}"/${P}-flags.patch +) + +src_configure() { + tc-export CC +} + +src_install() { + dobin "${PN}" + doman "${PN}.1" + dodoc README* +}
