summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-03-30 05:53:42 +0000
committerMike Frysinger <vapier@gentoo.org>2005-03-30 05:53:42 +0000
commit3a542b989c711f1bed13e8448d18712e71216bcf (patch)
tree47137fc61d1fbdc02b919638500fef018d4dd417 /sci-calculators
parentWhoops deprecated 2 empty profiles, fixing it. (diff)
downloadgentoo-2-3a542b989c711f1bed13e8448d18712e71216bcf.tar.gz
gentoo-2-3a542b989c711f1bed13e8448d18712e71216bcf.tar.bz2
gentoo-2-3a542b989c711f1bed13e8448d18712e71216bcf.zip
initial import
(Portage version: 2.0.51.19)
Diffstat (limited to 'sci-calculators')
-rw-r--r--sci-calculators/pcalc/ChangeLog8
-rw-r--r--sci-calculators/pcalc/Manifest2
-rw-r--r--sci-calculators/pcalc/files/digest-pcalc-1.0.01
-rw-r--r--sci-calculators/pcalc/metadata.xml8
-rw-r--r--sci-calculators/pcalc/pcalc-1.0.0.ebuild32
5 files changed, 51 insertions, 0 deletions
diff --git a/sci-calculators/pcalc/ChangeLog b/sci-calculators/pcalc/ChangeLog
new file mode 100644
index 000000000000..548461eb4813
--- /dev/null
+++ b/sci-calculators/pcalc/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for sci-calculators/pcalc
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-calculators/pcalc/ChangeLog,v 1.1 2005/03/30 05:53:42 vapier Exp $
+
+*pcalc-1.0.0 (30 Mar 2005)
+
+ 30 Mar 2005; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by me.
diff --git a/sci-calculators/pcalc/Manifest b/sci-calculators/pcalc/Manifest
new file mode 100644
index 000000000000..b4a20d525c7d
--- /dev/null
+++ b/sci-calculators/pcalc/Manifest
@@ -0,0 +1,2 @@
+MD5 0f59c3b1add7b821256013f1f8963def pcalc-1.0.0.ebuild 438
+MD5 ca434e3472d0fc8b9da24dc053a7929f files/digest-pcalc-1.0.0 61
diff --git a/sci-calculators/pcalc/files/digest-pcalc-1.0.0 b/sci-calculators/pcalc/files/digest-pcalc-1.0.0
new file mode 100644
index 000000000000..6e1788842d28
--- /dev/null
+++ b/sci-calculators/pcalc/files/digest-pcalc-1.0.0
@@ -0,0 +1 @@
+MD5 19ba589b61b7c302ca4570a6c75a4df1 pcalc-000.tar.gz 103437
diff --git a/sci-calculators/pcalc/metadata.xml b/sci-calculators/pcalc/metadata.xml
new file mode 100644
index 000000000000..ccc6fa98373f
--- /dev/null
+++ b/sci-calculators/pcalc/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<maintainer>
+ <email>vapier@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/sci-calculators/pcalc/pcalc-1.0.0.ebuild b/sci-calculators/pcalc/pcalc-1.0.0.ebuild
new file mode 100644
index 000000000000..9cf13274464a
--- /dev/null
+++ b/sci-calculators/pcalc/pcalc-1.0.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-calculators/pcalc/pcalc-1.0.0.ebuild,v 1.1 2005/03/30 05:53:42 vapier Exp $
+
+DESCRIPTION="the programmers calculator"
+HOMEPAGE="http://ibiblio.org/pub/Linux/apps/math/calc/pcalc.lsm"
+SRC_URI="http://ibiblio.org/pub/Linux/apps/math/calc/pcalc-000.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-devel/flex"
+RDEPEND=""
+
+S=${WORKDIR}/${PN}-000
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ rm -f pcalc
+}
+
+src_test() {
+ make test || die "make test failed :("
+}
+
+src_install() {
+ dobin pcalc || die "dobin pcalc"
+ dodoc EXAMPLE README
+}