You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-misc/tint2/tint2-16.7.ebuild

67 lines
1.3 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake-utils xdg
DESCRIPTION="tint2 is a lightweight panel/taskbar for Linux."
HOMEPAGE="https://gitlab.com/o9000/tint2"
SRC_URI="https://gitlab.com/o9000/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
S=${WORKDIR}/${PN}-v${PV}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="battery svg startup-notification tint2conf"
DEPEND="
dev-libs/glib:2
svg? ( gnome-base/librsvg:2 )
>=media-libs/imlib2-1.4.2[X,png]
x11-libs/cairo[X]
x11-libs/pango
tint2conf? ( x11-libs/gtk+:2 )
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXdamage
x11-libs/libXinerama
>=x11-libs/libXrandr-1.3
x11-libs/libXrender
startup-notification? ( x11-libs/startup-notification )
"
RDEPEND="${DEPEND}"
src_prepare() {
xdg_src_prepare
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
-DENABLE_BATTERY="$(usex battery)"
-DENABLE_TINT2CONF="$(usex tint2conf)"
-DENABLE_SN="$(usex startup-notification)"
-DENABLE_RSVG="$(usex svg)"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
}
pkg_preinst() {
xdg_pkg_preinst
}
pkg_postinst() {
xdg_pkg_postinst
}
pkg_postrm() {
xdg_pkg_postrm
}