diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2005-02-03 01:35:20 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2005-02-03 01:35:20 +0000 |
commit | 1c852aa818dde61131f70b26fc0d600e35eb2c75 (patch) | |
tree | 74477e2fae31ec798a24f44bdd4cef3b7a468ab2 /sci-calculators/orpie | |
parent | Version bump. I have added the local useflag rhythmbox, which lets drivel gra... (diff) | |
download | historical-1c852aa818dde61131f70b26fc0d600e35eb2c75.tar.gz historical-1c852aa818dde61131f70b26fc0d600e35eb2c75.tar.bz2 historical-1c852aa818dde61131f70b26fc0d600e35eb2c75.zip |
Initial import
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'sci-calculators/orpie')
-rw-r--r-- | sci-calculators/orpie/ChangeLog | 10 | ||||
-rw-r--r-- | sci-calculators/orpie/Manifest | 4 | ||||
-rw-r--r-- | sci-calculators/orpie/files/digest-orpie-1.4.1 | 1 | ||||
-rw-r--r-- | sci-calculators/orpie/metadata.xml | 5 | ||||
-rw-r--r-- | sci-calculators/orpie/orpie-1.4.1.ebuild | 31 |
5 files changed, 51 insertions, 0 deletions
diff --git a/sci-calculators/orpie/ChangeLog b/sci-calculators/orpie/ChangeLog new file mode 100644 index 000000000000..83fd3a503042 --- /dev/null +++ b/sci-calculators/orpie/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sci-calculators/orpie +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/ChangeLog,v 1.1 2005/02/03 01:35:20 ribosome Exp $ + +*orpie-1.4.1 (02 Feb 2005) + + 02 Feb 2005; Olivier Fisette <ribosome@gentoo.org> +metadata.xml, + +orpie-1.4.1.ebuild: + Initial import. + diff --git a/sci-calculators/orpie/Manifest b/sci-calculators/orpie/Manifest new file mode 100644 index 000000000000..5beb459f0aba --- /dev/null +++ b/sci-calculators/orpie/Manifest @@ -0,0 +1,4 @@ +MD5 b21245b0cf4c4f59b6ca61ced79f48e2 orpie-1.4.1.ebuild 712 +MD5 d17c4be6019a17655dd99390b746abbd ChangeLog 355 +MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 +MD5 daeb2694921f2f6a00b7e5d74990117e files/digest-orpie-1.4.1 63 diff --git a/sci-calculators/orpie/files/digest-orpie-1.4.1 b/sci-calculators/orpie/files/digest-orpie-1.4.1 new file mode 100644 index 000000000000..21a329525b20 --- /dev/null +++ b/sci-calculators/orpie/files/digest-orpie-1.4.1 @@ -0,0 +1 @@ +MD5 04a3d7d4afc5374d8bcc476b348e6561 orpie-1.4.1.tar.gz 373649 diff --git a/sci-calculators/orpie/metadata.xml b/sci-calculators/orpie/metadata.xml new file mode 100644 index 000000000000..b229aec85b8f --- /dev/null +++ b/sci-calculators/orpie/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sci</herd> +</pkgmetadata> diff --git a/sci-calculators/orpie/orpie-1.4.1.ebuild b/sci-calculators/orpie/orpie-1.4.1.ebuild new file mode 100644 index 000000000000..857cacd9fcec --- /dev/null +++ b/sci-calculators/orpie/orpie-1.4.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/orpie-1.4.1.ebuild,v 1.1 2005/02/03 01:35:20 ribosome Exp $ + +inherit flag-o-matic + +DESCRIPTION="A fullscreen RPN calculator for the console" +HOMEPAGE="http://www.eecs.umich.edu/~pelzlpj/orpie/" +SRC_URI="http://www.eecs.umich.edu/~pelzlpj/orpie/${P}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="dev-lang/ocaml + sci-libs/gsl + sys-libs/ncurses" + +src_compile() { + econf || die + emake || die +} + +src_install() { + make install DESTDIR=${D} + dodoc doc/TODO + insinto /usr/share/doc/${PF} + doins doc/manual.pdf + doins doc/manual.html +} |