xystray-1.0.ebuild 567 B

1234567891011121314151617181920212223242526272829
  1. # Copyright 1999-2017 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=6
  4. DESCRIPTION="A simple implementation of freedesktop.org notification area for X"
  5. HOMEPAGE="http://steelman.github.com/xystray/"
  6. SRC_URI="https://github.com/steelman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
  7. LICENSE="GPL-2+"
  8. SLOT="0"
  9. KEYWORDS="~amd64 ~x86"
  10. IUSE=""
  11. CDEPEND="
  12. x11-libs/libX11
  13. x11-libs/libXt"
  14. DEPEND="${CDEPEND}
  15. x11-libs/libXaw"
  16. RDEPEND="${CDEPEND}"
  17. PATCHES=(
  18. "${FILESDIR}/${P}-ldflags.patch"
  19. )
  20. src_install() {
  21. dobin xystray
  22. }