mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-29 09:52:33 +01:00
38 lines
752 B
Bash
38 lines
752 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit gnome2-utils xdg-utils
|
|
|
|
DESCRIPTION="Full Color Paint tool"
|
|
HOMEPAGE="https://osdn.net/projects/azpainter/"
|
|
SRC_URI="https://osdn.net/projects/azpainter/downloads/69408/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="x11-libs/libX11
|
|
x11-libs/libXext
|
|
x11-libs/libXft
|
|
media-libs/fontconfig
|
|
media-libs/freetype
|
|
x11-libs/libXi
|
|
virtual/jpeg
|
|
media-libs/libpng
|
|
sys-libs/zlib"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
pkg_postinst() {
|
|
gnome2_icon_cache_update
|
|
xdg_desktop_database_update
|
|
xdg_mimeinfo_database_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
gnome2_icon_cache_update
|
|
xdg_desktop_database_update
|
|
xdg_mimeinfo_database_update
|
|
}
|