Index: x11-libs/mtdev/mtdev-9999.ebuild |
diff --git a/x11-libs/mtdev/mtdev-9999.ebuild b/x11-libs/mtdev/mtdev-9999.ebuild |
new file mode 100644 |
index 0000000000000000000000000000000000000000..74c50feda53fe89f7f7f9bd2be46fb9c268d95c6 |
--- /dev/null |
+++ b/x11-libs/mtdev/mtdev-9999.ebuild |
@@ -0,0 +1,29 @@ |
+# Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
+# Distributed under the terms of the GNU General Public License v2 |
+ |
+EAPI=2 |
+ |
+inherit autotools cros-workon |
+ |
+DESCRIPTION="mtdev library for multitouch" |
+HOMEPAGE="http://bitmath.org/code/mtdev/" |
+KEYWORDS="~arm ~x86" |
+LICENSE="MIT" |
+SLOT="0" |
+IUSE="" |
+RDEPEND="" |
+DEPEND="${RDEPEND}" |
+ |
+src_prepare() { |
+ eautoreconf || die |
+} |
+ |
+src_configure() { |
+ econf --disable-static \ |
+ --disable-maintainer-mode |
+} |
+ |
+src_install() { |
+ emake DESTDIR="${D}" install || die |
+ rm -f "${D}/usr/lib/libmtdev.la" |
+} |