media-gfx/laigter - 1.13.1 (edgets)

Search

Install

Install this version:

emerge -a =media-gfx/laigter-1.13.1

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =media-gfx/laigter-1.13.1

Or alternatively:

emerge --autounmask-write -a =media-gfx/laigter-1.13.1

Package Information

Description:
Automatic normal map generator for sprites
Homepage:
https://github.com/azagaya/laigter
License:
GPL-3+

Ebuild Details

Version EAPI Keywords Slot
1.13.1 8 ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit qmake-utils xdg

DESCRIPTION="Automatic normal map generator for sprites"
HOMEPAGE="https://github.com/azagaya/laigter"

if [[ ${PV} == 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="${HOMEPAGE}.git"
else
	SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
fi

LICENSE="GPL-3+"
SLOT="0"
RESTRICT="mirror"

RDEPEND="
	dev-qt/qtbase:6[gui,network,opengl,widgets]
"
DEPEND="${RDEPEND}"
BDEPEND="dev-qt/qttools:6"

src_configure() {
	eqmake6 laigter.pro PREFIX="${EPREFIX}/usr"
}

src_install() {
	emake install INSTALL_ROOT="${D}"
	dodoc README.md ACKNOWLEDGEMENTS
}

Inherited Eclasses

xdg

Dependencies

DEPEND

	dev-qt/qtbase:6[gui,network,opengl,widgets]

RDEPEND

	dev-qt/qtbase:6[gui,network,opengl,widgets]

BDEPEND

dev-qt/qttools:6