summaryrefslogtreecommitdiff
blob: 1b3e74b50f4e7b6a5c0a38f957fe7e8b3c6123c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=4
inherit autotools base udev

DESCRIPTION="A Device Firmware Update based USB programmer for Atmel chips"
HOMEPAGE="http://dfu-programmer.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

RDEPEND="virtual/libusb:1
	virtual/udev"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}/${PV}-as-needed.patch" )

src_prepare() {
	base_src_prepare
	eautoreconf
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	ebegin "Generating UDEV rules..."
	UDEV_RULES="$(get_udevdir)/rules.d/70-dfu-programmer.rules"
	mkdir -p "${D}"/${UDEV_RULES%/*}
	echo -e "#\n# do not edit this file, it will be overwritten on update\n#" \
		> "${D}"/${UDEV_RULES}
	for prodid in "2ffa" "2ffb" "2ff9" "2ff7" "2ff4" "2ff3" ;
	do
		echo "SUBSYSTEM==\"usb\", ACTION==\"add\", ATTRS{idVendor}==\"03eb\", \
		ATTRS{idProduct}==\"${prodid}\", MODE=\"660\", GROUP=\"plugdev\", \
		SYMLINK+=\"dfu-%n\"" >> "${D}"${UDEV_RULES}
	done
	eend $?
}