You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/lomoco/lomoco-1.0-r4.ebuild

48 lines
1.1 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/lomoco/lomoco-1.0-r4.ebuild,v 1.2 2011/01/28 15:34:30 hwoarang Exp $
EAPI="2"
inherit autotools eutils multilib
DESCRIPTION="Lomoco can configure vendor-specific options on Logitech USB mice."
HOMEPAGE="http://www.lomoco.org/"
SRC_URI="http://www.lomoco.org/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~x86"
IUSE=""
DEPEND="=virtual/libusb-0*"
RDEPEND="${DEPEND}
!<sys-fs/udev-114"
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo-hardware-support.patch
epatch "${FILESDIR}"/${P}-updated-udev.patch
eautoreconf
}
src_compile() {
emake || die "make failed"
awk -f udev/toudev.awk < src/lomoco.c > udev/40-lomoco.rules \
|| die "failed to create udev rules"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
insinto /$(get_libdir)/udev/rules.d
doins udev/40-lomoco.rules
insinto /etc
doins "${FILESDIR}"/lomoco.conf
exeinto /$(get_libdir)/udev
newexe udev/udev.lomoco lomoco
dodoc AUTHORS ChangeLog NEWS README
}