diff options
author | Don Seiler <rizzo@gentoo.org> | 2003-07-17 01:46:08 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2003-07-17 01:46:08 +0000 |
commit | 90d252d18fee57e93e0729e8d8b05eb83f9243b9 (patch) | |
tree | 22c1ed25f1473e1963720afc4c388f79227ddd68 /app-sci/hcalc | |
parent | Initial import. (diff) | |
download | gentoo-2-90d252d18fee57e93e0729e8d8b05eb83f9243b9.tar.gz gentoo-2-90d252d18fee57e93e0729e8d8b05eb83f9243b9.tar.bz2 gentoo-2-90d252d18fee57e93e0729e8d8b05eb83f9243b9.zip |
Initial import.
Diffstat (limited to 'app-sci/hcalc')
-rw-r--r-- | app-sci/hcalc/ChangeLog | 9 | ||||
-rw-r--r-- | app-sci/hcalc/Manifest | 1 | ||||
-rw-r--r-- | app-sci/hcalc/files/digest-hcalc-1.0 | 1 | ||||
-rw-r--r-- | app-sci/hcalc/hcalc-1.0.ebuild | 32 |
4 files changed, 43 insertions, 0 deletions
diff --git a/app-sci/hcalc/ChangeLog b/app-sci/hcalc/ChangeLog new file mode 100644 index 000000000000..ad3a21760a5e --- /dev/null +++ b/app-sci/hcalc/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-sci/hcalc +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/hcalc/ChangeLog,v 1.1 2003/07/17 01:45:45 rizzo Exp $ + +*hcalc-1.0 (16 Jul 2003) + + 16 Jul 2003; Don Seiler <rizzo@gentoo.org>; hcalc-1.0.ebuild: + ebuild submitted by damjan.bole(at)studioproteus.si + diff --git a/app-sci/hcalc/Manifest b/app-sci/hcalc/Manifest index 9217cacc2955..346fcc4cc2d2 100644 --- a/app-sci/hcalc/Manifest +++ b/app-sci/hcalc/Manifest @@ -1,2 +1,3 @@ MD5 07aae4fc1d6cb8ca57c7da431bdee0bd hcalc-1.0.ebuild 719 MD5 cf18c9438b67fd2525aebd770f40a230 ChangeLog 352 +MD5 daef77cdcc6f351416cb7db67c4e2471 files/digest-hcalc-1.0 55 diff --git a/app-sci/hcalc/files/digest-hcalc-1.0 b/app-sci/hcalc/files/digest-hcalc-1.0 new file mode 100644 index 000000000000..78e9f7ed0dd7 --- /dev/null +++ b/app-sci/hcalc/files/digest-hcalc-1.0 @@ -0,0 +1 @@ +MD5 1dda36577dec15f97ff10800d45773b5 hcalc.tar.gz 5917 diff --git a/app-sci/hcalc/hcalc-1.0.ebuild b/app-sci/hcalc/hcalc-1.0.ebuild new file mode 100644 index 000000000000..2dfa5b53add7 --- /dev/null +++ b/app-sci/hcalc/hcalc-1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/hcalc/hcalc-1.0.ebuild,v 1.1 2003/07/17 01:45:45 rizzo Exp $ + +DESCRIPTION="DJ's Hex Calculator" +HOMEPAGE="http://www.delorie.com/store/hcalc/" +SRC_URI="http://www.delorie.com/store/hcalc/${PN}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/x11" +RDEPEND="${DEPEND}" + +S=${WORKDIR} + +src_compile() { + sed 's|'-lX11'|'"-lX11 -L/usr/X11R6/lib"'|' Makefile > Makefile_fixed + make -f Makefile_fixed || die +} + +src_install() { + dobin hcalc +} + +pkg_postinst() { + einfo "" + einfo "Enter hcalc to run and use kill or ctrl-c to exit." + einfo "" +} + |