Revert "Fix ebuilds and metadata: follow Gentoo conventions"

This reverts commit ee848af506.

Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
David Roman
2025-12-25 19:27:50 +01:00
parent fe9a175eb7
commit 924e7d954f
2 changed files with 41 additions and 13 deletions

View File

@@ -7,18 +7,25 @@ inherit cmake
DESCRIPTION="Fast system information display utility with modular customizable features"
HOMEPAGE="https://github.com/techoraye/metetch"
SRC_URI="https://github.com/techoraye/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://github.com/techoraye/metetch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
net-misc/curl
sys-libs/ncurses:=
net-misc/curl
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
DEPEND="${RDEPEND}
sys-libs/glibc
"
BDEPEND="
virtual/pkgconfig
"
S="${WORKDIR}/${PN}-${PV}"
src_configure() {
local mycmakeargs=(
@@ -29,5 +36,8 @@ src_configure() {
src_install() {
cmake_src_install
# Install license
einstalldocs
}
newdoc LICENSE LICENSE.MIT
}