diff options
author | Radoslaw Stachowiak <radek@gentoo.org> | 2006-12-03 23:17:49 +0000 |
---|---|---|
committer | Radoslaw Stachowiak <radek@gentoo.org> | 2006-12-03 23:17:49 +0000 |
commit | 7f80192b5e1f26dc3d404d58d83deb0e9b5161e4 (patch) | |
tree | a4454820fabe1aa7d57586ff5c2514c0d08f19ad /app-text | |
download | radek-7f80192b5e1f26dc3d404d58d83deb0e9b5161e4.tar.gz radek-7f80192b5e1f26dc3d404d58d83deb0e9b5161e4.tar.bz2 radek-7f80192b5e1f26dc3d404d58d83deb0e9b5161e4.zip |
initial commit
svn path=/radek-portage/; revision=2
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/handy/Manifest | 3 | ||||
-rw-r--r-- | app-text/handy/files/digest-handy-1.11-r1 | 1 | ||||
-rw-r--r-- | app-text/handy/handy-1.11-r1.ebuild | 38 |
3 files changed, 42 insertions, 0 deletions
diff --git a/app-text/handy/Manifest b/app-text/handy/Manifest new file mode 100644 index 0000000..ffd47c6 --- /dev/null +++ b/app-text/handy/Manifest @@ -0,0 +1,3 @@ +MD5 f27936b8f8cd9e6aff7f3392bd4d1c59 handy-1.11-r1.ebuild 676 +MD5 05bdce5efb7d77b28ae6ca0156f84795 files/digest-handy-1.11 61 +MD5 05bdce5efb7d77b28ae6ca0156f84795 files/digest-handy-1.11-r1 61 diff --git a/app-text/handy/files/digest-handy-1.11-r1 b/app-text/handy/files/digest-handy-1.11-r1 new file mode 100644 index 0000000..ad4641c --- /dev/null +++ b/app-text/handy/files/digest-handy-1.11-r1 @@ -0,0 +1 @@ +MD5 9cacc5d7aad8bf93ff7b1e1d801b84f2 handy-1.11.tar.gz 12589 diff --git a/app-text/handy/handy-1.11-r1.ebuild b/app-text/handy/handy-1.11-r1.ebuild new file mode 100644 index 0000000..af073f6 --- /dev/null +++ b/app-text/handy/handy-1.11-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 2003 Radoslaw Stachowiak +# Distributed under the terms of the GNU General Public License, v2 +# $Header: /home/cvsroot/gentoo-x86/app-portage/gentoolkit/files/scripts/mkebuild,v 1.1 2003/08/15 12:23:44 lanius Exp $ + +DESCRIPTION="Handy calc is a small commandline calculator similar to GNU bc." +SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/${P}.tar.gz" +HOMEPAGE="http://www.ne.jp/asahi/linux/timecop/" +LICENSE="GPL" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="yacc" + +#RDEPEND="" + +S=${WORKDIR}/${P} + +src_unpack() { + + unpack ${A} + cd ${S} + +} + +src_compile() { + + emake || die +} + +src_install () { + + mkdir -p ${D}/usr/bin + install bc ${D}/usr/bin/hc || die +} + + + |