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.
34 lines
710 B
34 lines
710 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="4"
|
|
|
|
DESCRIPTION="flashtool for the multi purpose programming adapter usbprog"
|
|
HOMEPAGE="http://www.embedded-projects.net/index.php?page_id=215"
|
|
SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="static-libs X"
|
|
|
|
RDEPEND="X? ( >=x11-libs/wxGTK-2.6.0 )
|
|
>=dev-libs/libxml2-2.0.0
|
|
net-misc/curl
|
|
virtual/libusb:0
|
|
sys-libs/readline"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable X gui) \
|
|
$(use_enable static-libs static)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
use static-libs || find "${ED}" -name '*.la' -delete
|
|
}
|