2016-11-03 10:59:33 +01:00
|
|
|
# Copyright 1999-2010 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
2020-02-15 17:47:19 +01:00
|
|
|
EAPI=7
|
2016-11-03 10:59:33 +01:00
|
|
|
|
|
|
|
inherit multilib
|
|
|
|
|
|
|
|
DESCRIPTION="Calculate GCode from given PCB layouts"
|
|
|
|
HOMEPAGE="http://sourceforge.net/apps/mediawiki/pcb2gcode/"
|
|
|
|
|
|
|
|
if [[ ${PV} == "9999" ]] ; then
|
|
|
|
EGIT_REPO_URI="https://github.com/pcb2gcode/pcb2gcode.git"
|
|
|
|
KEYWORDS=""
|
2020-02-15 17:47:19 +01:00
|
|
|
inherit autotools eutils git-r3
|
2016-11-03 10:59:33 +01:00
|
|
|
else
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
|
|
|
fi
|
|
|
|
|
|
|
|
RESTRICT="nomirror"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
|
|
|
|
2021-03-25 15:42:58 +01:00
|
|
|
RDEPEND=">=sci-electronics/gerbv-2.1.0"
|
2020-02-15 17:47:19 +01:00
|
|
|
DEPEND="dev-cpp/gtkmm:2.4
|
2022-12-10 15:16:04 +01:00
|
|
|
sci-libs/geos
|
2020-02-15 17:47:19 +01:00
|
|
|
dev-libs/boost
|
|
|
|
${RDEPEND}"
|
2016-11-03 10:59:33 +01:00
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
if [[ ${PV} == "9999" ]] ; then
|
2021-03-25 15:42:58 +01:00
|
|
|
eautoreconf
|
2016-11-03 10:59:33 +01:00
|
|
|
fi
|
2020-02-15 17:47:19 +01:00
|
|
|
default
|
2016-11-03 10:59:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
cd "${BUILD_DIR}"
|
|
|
|
exeinto /usr/bin
|
|
|
|
doexe pcb2gcode
|
|
|
|
|
|
|
|
cd "${S}"
|
|
|
|
doman man/pcb2gcode.1
|
|
|
|
dodoc AUTHORS COPYING
|
|
|
|
}
|