summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-11-22 22:10:57 +0000
committerMike Frysinger <vapier@gentoo.org>2002-11-22 22:10:57 +0000
commit3c174498148624e92e4768e50d21778ddbad120b (patch)
tree2c98503d3000c3d2d28274c5ae67bd62659fe9c4 /app-sci
parentfix bug #7097 - don't hardcode qt location. also added new version while i wa... (diff)
downloadgentoo-2-3c174498148624e92e4768e50d21778ddbad120b.tar.gz
gentoo-2-3c174498148624e92e4768e50d21778ddbad120b.tar.bz2
gentoo-2-3c174498148624e92e4768e50d21778ddbad120b.zip
initial ebuild #10826
Diffstat (limited to 'app-sci')
-rw-r--r--app-sci/kunit/ChangeLog8
-rw-r--r--app-sci/kunit/files/digest-kunit-0.51
-rw-r--r--app-sci/kunit/kunit-0.5.ebuild25
3 files changed, 34 insertions, 0 deletions
diff --git a/app-sci/kunit/ChangeLog b/app-sci/kunit/ChangeLog
new file mode 100644
index 000000000000..e75928c910fa
--- /dev/null
+++ b/app-sci/kunit/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for app-sci/kunit
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/kunit/ChangeLog,v 1.1 2002/11/22 22:10:57 vapier Exp $
+
+*kunit-0.5 (22 Nov 2002)
+
+ 22 Nov 2002; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by Dylan Carlson <bsinthe@pobox.com>.
diff --git a/app-sci/kunit/files/digest-kunit-0.5 b/app-sci/kunit/files/digest-kunit-0.5
new file mode 100644
index 000000000000..b67301d2d6eb
--- /dev/null
+++ b/app-sci/kunit/files/digest-kunit-0.5
@@ -0,0 +1 @@
+MD5 92c619fafa8cb66d6731951c23f98ad9 kunit-0.5.tar.gz 118012
diff --git a/app-sci/kunit/kunit-0.5.ebuild b/app-sci/kunit/kunit-0.5.ebuild
new file mode 100644
index 000000000000..02d833cad623
--- /dev/null
+++ b/app-sci/kunit/kunit-0.5.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/kunit/kunit-0.5.ebuild,v 1.1 2002/11/22 22:10:57 vapier Exp $
+
+DESCRIPTION="An excellent qt-based unit conversion tool"
+SRC_URI="http://www.netmeister.org/apps/${P}.tar.gz"
+HOMEPAGE="http://www.netmeister.org/apps/kunit/"
+
+KEYWORDS="x86"
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="virtual/x11
+ >=x11-libs/qt-2.2.0"
+
+src_compile() {
+ cd kunit
+ emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die
+}
+
+src_install() {
+ dobin kunit/kunit
+ dodoc AUTHORS COPYING README
+ dohtml kunit/docs/*
+}