diff options
author | Amadeusz Żołnowski <aidecoe@gentoo.org> | 2016-07-23 09:11:43 +0100 |
---|---|---|
committer | Amadeusz Żołnowski <aidecoe@gentoo.org> | 2016-07-23 17:18:56 +0100 |
commit | 8f079e5a55493424277efe239ba1aa7d7dbc8c35 (patch) | |
tree | ecb1d1000a79227d2a6fda9901b2de7cbfa42329 /app-misc/tek/tek-1.3.0.ebuild | |
parent | app-admin/sudo: Bump to version 1.8.17_p1 (diff) | |
download | gentoo-8f079e5a55493424277efe239ba1aa7d7dbc8c35.tar.gz gentoo-8f079e5a55493424277efe239ba1aa7d7dbc8c35.tar.bz2 gentoo-8f079e5a55493424277efe239ba1aa7d7dbc8c35.zip |
app-misc/tek: Add new package
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-misc/tek/tek-1.3.0.ebuild')
-rw-r--r-- | app-misc/tek/tek-1.3.0.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-misc/tek/tek-1.3.0.ebuild b/app-misc/tek/tek-1.3.0.ebuild new file mode 100644 index 000000000000..692a5844873b --- /dev/null +++ b/app-misc/tek/tek-1.3.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +WX_GTK_VER=3.0 + +inherit udev wxwidgets + +DESCRIPTION="GUI tool for upgrading the firmware of a Truly Ergonomic Keyboard" +HOMEPAGE="http://trulyergonomic.com/ https://github.com/m-ou-se/tek" +SRC_URI="https://github.com/m-ou-se/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="all-rights-reserved GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="mirror" + +RDEPEND="x11-libs/wxGTK:${WX_GTK_VER}=[X] + virtual/udev" +DEPEND="${RDEPEND} + app-editors/vim-core" + +src_prepare() { + default + setup-wxwidgets + sed -r \ + -e '/LIN_STRIP/d' \ + -e 's/LIN_CXX/CXX/g' \ + -e 's/CXX=/CXX\?=/' \ + -e 's/CXXFLAGS=(.*)/CXXFLAGS:=\1 $(CXXFLAGS)/' \ + -i "${S}"/Makefile || die +} + +src_install() { + newbin tek.lin tek + udev_newrules linux-udev-rules 40-tek.rules + einstalldocs +} + +pkg_postinst() { + udev_reload +} |