media-gfx/swayimg: Add 9999 ebuild

This commit is contained in:
medanisjbara 2022-12-24 19:19:27 +01:00
parent 907e6ffa82
commit cd8e80bf47
2 changed files with 82 additions and 2 deletions

View File

@ -7,11 +7,16 @@ inherit bash-completion-r1 meson xdg
DESCRIPTION="A lightweight image viewer for Sway/Wayland display servers."
HOMEPAGE="https://github.com/artemsen/swayimg"
SRC_URI="https://github.com/artemsen/swayimg/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/artemsen/swayimg"
else
SRC_URI="https://github.com/artemsen/swayimg/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
COMMUN_DEPEND="
dev-libs/json-c
@ -55,6 +60,9 @@ src_configure() {
-Dman=true
-Dzsh=enabled
)
if [[ "${PV}" != "9999" ]]; then
emesonargs+=( -Dversion=${PV} )
fi
meson_src_configure
}

View File

@ -0,0 +1,72 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1 meson xdg
DESCRIPTION="A lightweight image viewer for Sway/Wayland display servers."
HOMEPAGE="https://github.com/artemsen/swayimg"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/artemsen/swayimg"
else
SRC_URI="https://github.com/artemsen/swayimg/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="MIT"
SLOT="0"
COMMUN_DEPEND="
dev-libs/json-c
dev-libs/wayland
media-libs/fontconfig
media-libs/freetype
x11-libs/libxkbcommon
exif? ( media-libs/libexif )
gif? ( media-libs/giflib )
heif? ( media-libs/libheif )
jpeg? ( media-libs/libjpeg-turbo )
jpegxl? ( media-libs/libjxl )
png? ( media-libs/libpng )
svg? ( gnome-base/librsvg )
tiff? ( media-libs/tiff )
webp? ( media-libs/libwebp )"
RDEPEND="${COMMUN_DEPEND}"
DEPEND="
${COMMUN_DEPEND}
dev-libs/wayland-protocols"
BDEPEND="
dev-util/wayland-scanner"
IUSE="exif gif heif jpeg jpegxl png svg tiff webp"
src_configure() {
local emesonargs=(
$(meson_feature exif)
$(meson_feature gif)
$(meson_feature heif)
$(meson_feature jpeg)
$(meson_feature jpegxl jxl)
$(meson_feature png)
$(meson_feature svg)
$(meson_feature tiff)
$(meson_feature webp)
-Ddesktop=true
-Dman=true
-Dzsh=enabled
)
if [[ "${PV}" != "9999" ]]; then
emesonargs+=( -Dversion=${PV} )
fi
meson_src_configure
}
src_install(){
meson_src_install
newbashcomp extra/bash.completion ${PN}
}