1
0
mirror of https://github.com/bsedin/gentoo-repo.git synced 2024-09-20 20:30:28 +00:00

initial commit with trayion ebuild

This commit is contained in:
2014-11-19 15:16:33 +03:00
commit 9e18ae6940
5 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="FreeDesktop trayicon area for Ion3"
HOMEPAGE="http://code.google.com/p/trayion/"
SRC_URI="https://github.com/laynor/trayion/archive/v${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="x11-libs/libX11"
src_compile() {
emake -j1 CC=$(tc-getCC) CFLAGS="${CFLAGS}"
}
src_install() {
dobin trayicon
doman trayicon.1
dodoc AUTHORS README
}