summaryrefslogtreecommitdiff
path: root/dev-embedded/picprog
diff options
context:
space:
mode:
Diffstat (limited to 'dev-embedded/picprog')
-rw-r--r--dev-embedded/picprog/Manifest1
-rw-r--r--dev-embedded/picprog/metadata.xml7
-rw-r--r--dev-embedded/picprog/picprog-1.9.1.ebuild27
3 files changed, 35 insertions, 0 deletions
diff --git a/dev-embedded/picprog/Manifest b/dev-embedded/picprog/Manifest
new file mode 100644
index 000000000000..35df81537e6c
--- /dev/null
+++ b/dev-embedded/picprog/Manifest
@@ -0,0 +1 @@
+DIST picprog-1.9.1.tar.gz 76452 SHA256 057572133390122051622c412b8b3abeb38487a205645c427252ec61c38304e4 SHA512 1f24c372aa149d86dd4778904f0abb782510168ce36676b820a5b675f53a7207f62cdcb374c8ec2c60fc51fdfd5780ad9f8f464365403d3d2232187dade91887 WHIRLPOOL 9781fc2854e8e96298e193b96ca93c229a2d4da94e086020d08fa5f86c02e77a5f2b79f22301610e36e5a228c870c35fa9664eb20f58be1f5b91c87122d5e0fd
diff --git a/dev-embedded/picprog/metadata.xml b/dev-embedded/picprog/metadata.xml
new file mode 100644
index 000000000000..0f33447143fb
--- /dev/null
+++ b/dev-embedded/picprog/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>dev-embedded</herd>
+<longdescription>a pic16xxx series microcontroller programmer software for the simple serial port
+device</longdescription>
+</pkgmetadata>
diff --git a/dev-embedded/picprog/picprog-1.9.1.ebuild b/dev-embedded/picprog/picprog-1.9.1.ebuild
new file mode 100644
index 000000000000..7295030707d0
--- /dev/null
+++ b/dev-embedded/picprog/picprog-1.9.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+
+inherit toolchain-funcs
+
+DESCRIPTION="A PIC16, PIC18 and dsPIC microcontroller programmer software for the serial port"
+HOMEPAGE="http://www.iki.fi/hyvatti/pic/picprog.html"
+SRC_URI="http://www.iki.fi/hyvatti/pic/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 ~ppc x86"
+IUSE=""
+
+src_compile() {
+ emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+ dobin picprog
+ dodoc README
+ dohtml picprog.html *.png
+ doman picprog.1
+}