diff options
Diffstat (limited to 'x11-misc/xinput/xinput-1.2.ebuild')
-rw-r--r-- | x11-misc/xinput/xinput-1.2.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/x11-misc/xinput/xinput-1.2.ebuild b/x11-misc/xinput/xinput-1.2.ebuild new file mode 100644 index 000000000000..fb1cdabf4447 --- /dev/null +++ b/x11-misc/xinput/xinput-1.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xinput/xinput-1.2.ebuild,v 1.1 2004/06/29 22:35:52 mattam Exp $ + +DESCRIPTION="An utility to set XInput device parameters" +HOMEPAGE="ftp://ftp.x.org/contrib/utilities/${PN}.README" +SRC_URI="ftp://ftp.x.org/contrib/utilities/${P}.tar.gz" +LICENSE="as-is" + +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" +DEPEND="virtual/x11" + +src_compile() { + xmkmf -a || die + emake CDEBUGFLAGS="${CDEBUGFLAGS}" || die +} + +src_install() { + make DESTDIR=${D} install install.man + + dodoc ChangeLog README +} |