diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2017-12-05 14:03:00 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2017-12-05 14:39:58 +0100 |
commit | f9ecd04dbfa68032663e8a00f53f4808ccff6f0e (patch) | |
tree | 3ecea023e869eeeb2e6590765e61b600f07fa63c /x11-plugins/wmcube/wmcube-1.0.2.ebuild | |
parent | x11-plugins/wmapmload: eapi bump (diff) | |
download | gentoo-f9ecd04dbfa68032663e8a00f53f4808ccff6f0e.tar.gz gentoo-f9ecd04dbfa68032663e8a00f53f4808ccff6f0e.tar.bz2 gentoo-f9ecd04dbfa68032663e8a00f53f4808ccff6f0e.zip |
x11-plugins/wmcube: 1.0.2 bump
Clean and update ebuild
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'x11-plugins/wmcube/wmcube-1.0.2.ebuild')
-rw-r--r-- | x11-plugins/wmcube/wmcube-1.0.2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-plugins/wmcube/wmcube-1.0.2.ebuild b/x11-plugins/wmcube/wmcube-1.0.2.ebuild new file mode 100644 index 000000000000..7acbd3c0c2f9 --- /dev/null +++ b/x11-plugins/wmcube/wmcube-1.0.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="a dockapp cpu monitor with spinning 3d objects" +HOMEPAGE="http://linux-bsd-unix.strefa.pl/index.en.html" +SRC_URI="http://linux-bsd-unix.strefa.pl/${P}.tar.gz -> ${P}.tar" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND}" + +DOCS=( + "${WORKDIR}"/${P}/CHANGES + "${WORKDIR}"/${P}/README + ) +S="${WORKDIR}/${P}/wmcube" + +src_compile() { + emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin ${PN} + einstalldocs + doman ${PN}.1 + + insinto /usr/share/${PN} + doins "${WORKDIR}"/${P}/3D-objects/*.wmc +} |