summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Trygve Kalleberg <karltk@gentoo.org>2002-04-24 20:20:08 +0000
committerKarl Trygve Kalleberg <karltk@gentoo.org>2002-04-24 20:20:08 +0000
commita72e6fa763d17cbb4066a10dacb9dc7d1ab714aa (patch)
treef734455527600d9f274b3c2aa049908d230612f7 /dev-util
parentremoved avifile-0.7 as the ebuild does not exist any more (diff)
downloadhistorical-a72e6fa763d17cbb4066a10dacb9dc7d1ab714aa.tar.gz
historical-a72e6fa763d17cbb4066a10dacb9dc7d1ab714aa.tar.bz2
historical-a72e6fa763d17cbb4066a10dacb9dc7d1ab714aa.zip
Fixes #1719.
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/gputils/ChangeLog13
-rw-r--r--dev-util/gputils/files/digest-gputils-0.10.21
-rw-r--r--dev-util/gputils/gputils-0.10.2.ebuild32
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-util/gputils/ChangeLog b/dev-util/gputils/ChangeLog
new file mode 100644
index 000000000000..87657f5c94be
--- /dev/null
+++ b/dev-util/gputils/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for dev-util/gputils
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gputils/ChangeLog,v 1.1 2002/04/24 20:20:08 karltk Exp $
+
+*gputils-0.10.2 (24 Apr 2002)
+
+ 24 Apr 2002; Karl Trygve Kalleberg <karltk@gentoo.org> gputils-0.10.2.ebuild files/digest-gputils-0.10.2 :
+
+ GPUTILS is a collection of tools for the Microchip (TM) PIC
+ microcontrollers. It includes gpasm, gplink, and gplib. It's distributed
+ under the terms of the GNU Public License. See the gnupic page
+ (http://www.gnupic.org) for other GNU PIC tools such as gpsim, a gputils
+ compatible simulator.
diff --git a/dev-util/gputils/files/digest-gputils-0.10.2 b/dev-util/gputils/files/digest-gputils-0.10.2
new file mode 100644
index 000000000000..f0ae3f5ae6b8
--- /dev/null
+++ b/dev-util/gputils/files/digest-gputils-0.10.2
@@ -0,0 +1 @@
+MD5 ec4593f8c0b4b4ecc3fd483487e0eb64 gputils-0.10.2.tar.gz 446218
diff --git a/dev-util/gputils/gputils-0.10.2.ebuild b/dev-util/gputils/gputils-0.10.2.ebuild
new file mode 100644
index 000000000000..3bd8c70826ba
--- /dev/null
+++ b/dev-util/gputils/gputils-0.10.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author: Jeffry Molanus <gila@home.nl>
+# Maintainer: Karl Trygve Kalleberg <karltk@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gputils/gputils-0.10.2.ebuild,v 1.1 2002/04/24 20:20:08 karltk Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Utils for the PICxxx procesors"
+SRC_URI="http://prdownloads.sourceforge.net/gputils/${P}.tar.gz"
+HOMEPAGE="http://gputils.sourceforge.net/"
+
+src_compile(){
+
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ --sysconfdir=/etc || die
+ emake
+}
+
+src_install() {
+ make prefix=${D}/usr/share \
+ bindir=${D}/usr/bin \
+ confdir=${D}/etc \
+ datadir=${D}/usr/share/ \
+ mandir=${D}/usr/share/man \
+ install || die
+ dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
+ dodoc doc/gputils.ps
+}