diff options
Diffstat (limited to 'app-laptop/dispad')
-rw-r--r-- | app-laptop/dispad/ChangeLog | 7 | ||||
-rw-r--r-- | app-laptop/dispad/dispad-0.3.1.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/app-laptop/dispad/ChangeLog b/app-laptop/dispad/ChangeLog index 46a928673dc9..da1eca6d32b4 100644 --- a/app-laptop/dispad/ChangeLog +++ b/app-laptop/dispad/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-laptop/dispad # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/dispad/ChangeLog,v 1.2 2015/06/05 14:26:07 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/dispad/ChangeLog,v 1.3 2015/08/06 16:15:28 jsbronder Exp $ + +*dispad-0.3.1 (06 Aug 2015) + + 06 Aug 2015; Justin Bronder <jsbronder@gentoo.org> +dispad-0.3.1.ebuild: + bump 0.3.1 05 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml: Add github to remote-id in metadata.xml diff --git a/app-laptop/dispad/dispad-0.3.1.ebuild b/app-laptop/dispad/dispad-0.3.1.ebuild new file mode 100644 index 000000000000..698ad098e20f --- /dev/null +++ b/app-laptop/dispad/dispad-0.3.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/dispad/dispad-0.3.1.ebuild,v 1.1 2015/08/06 16:15:28 jsbronder Exp $ + +EAPI=4 +inherit autotools + +DESCRIPTION="Daemon to disable trackpads while typing" +HOMEPAGE="https://github.com/BlueDragonX/dispad" +SRC_URI="https://github.com/BlueDragonX/dispad/tarball/v${PV/_/-} -> ${P}.tar.gz" + +S="${WORKDIR}/BlueDragonX-dispad-dbb9be3" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="x11-libs/libX11 + x11-libs/libXi + dev-libs/confuse" +RDEPEND="${DEPEND}" + +src_prepare() { + eautoreconf -i +} |