summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-libs/libinput/Manifest11
-rw-r--r--dev-libs/libinput/libinput-0.7.0.ebuild48
2 files changed, 0 insertions, 59 deletions
diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
deleted file mode 100644
index b59b0e67..00000000
--- a/dev-libs/libinput/Manifest
+++ /dev/null
@@ -1,11 +0,0 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA512
-
-DIST libinput-0.7.0.tar.xz 440228 SHA256 129f485afe5e4a9394641293991c97cb99f5f3338340d0d65b704ff463d1579e SHA512 0e03ab7ca98c4574997742b7d8912000fb176d7a3e2c381b7e63139f78455374f8f38284e226fe443d5a524f34be8995317b91fc0190795a97b10af060423b77 WHIRLPOOL 664510fc33cb718b56600553332bb3eb587b3f4a40f81d4a80dd218882aba204522bcbbfab98f3ae0c6447d3a39cc98b9d88aea5f8e3c21da0803b93d64ad321
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v2
-
-iEYEAREKAAYFAlSExccACgkQ1fmVwcYIWAaa/ACgxupbhZTPqvan1RnHiP5hJbMH
-3qgAn2q/E9N25lKGTnWeVYfdcomHgrB0
-=xoOe
------END PGP SIGNATURE-----
diff --git a/dev-libs/libinput/libinput-0.7.0.ebuild b/dev-libs/libinput/libinput-0.7.0.ebuild
deleted file mode 100644
index 337b861c..00000000
--- a/dev-libs/libinput/libinput-0.7.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-
-inherit eutils
-
-DESCRIPTION="Library to handle input devices in Wayland"
-HOMEPAGE="http://www.freedesktop.org/wiki/Software/libinput/"
-SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz"
-
-# License appears to be a variant of libtiff
-LICENSE="libtiff"
-SLOT="0/5"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
- >=dev-libs/libevdev-0.4
- >=sys-libs/mtdev-1.1
- virtual/libudev
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( >=dev-libs/check-0.9.10 )
-"
-# tests can even use: dev-util/valgrind
-
-src_prepare() {
- # Doc handling in kinda strange but everything
- # is available in the tarball already.
- sed -e 's/^\(SUBDIRS =.*\)doc\(.*\)$/\1\2/' \
- -i Makefile.am Makefile.in || die
-}
-
-src_configure() {
- # gui can be built but will not be installed
- econf \
- --disable-event-gui \
- $(use_enable test tests)
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc -r doc/html
- prune_libtool_files
-}