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
commitedafe2f929d2a1b9b2b089449085a26b1edd2a3a (patch)
tree7b2ccd4b0d04a262676463aa4253c8c8f18c3ade /sci-calculators/pcalc
parentWhoops deprecated 2 empty profiles, fixing it. (diff)
downloadhistorical-edafe2f929d2a1b9b2b089449085a26b1edd2a3a.tar.gz
historical-edafe2f929d2a1b9b2b089449085a26b1edd2a3a.tar.bz2
historical-edafe2f929d2a1b9b2b089449085a26b1edd2a3a.zip
initial import
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sci-calculators/pcalc')
-rw-r--r--sci-calculators/pcalc/ChangeLog8
-rw-r--r--sci-calculators/pcalc/Manifest4
-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, 53 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..13a167442ef6
--- /dev/null
+++ b/sci-calculators/pcalc/Manifest
@@ -0,0 +1,4 @@
+MD5 050e9516a42e9449715ec6231865ed4a pcalc-1.0.0.ebuild 703
+MD5 25822404d543970f374c03c190602347 metadata.xml 217
+MD5 a65811c769e646711b93cc5de916cb3e ChangeLog 338
+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
+}