summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2002-11-02 07:24:24 +0000
committerGeorge Shapovalov <george@gentoo.org>2002-11-02 07:24:24 +0000
commit2703a1e96140584222b980acac177b56530ef87f (patch)
treead8302ecd62e900f50e72e57006ddc53a4f19a36 /dev-libs/skyutils
parentInitial revision. Closes #8745. (diff)
downloadhistorical-2703a1e96140584222b980acac177b56530ef87f.tar.gz
historical-2703a1e96140584222b980acac177b56530ef87f.tar.bz2
historical-2703a1e96140584222b980acac177b56530ef87f.zip
new package skyutils - assorted collection of helpful C functions.
Diffstat (limited to 'dev-libs/skyutils')
-rw-r--r--dev-libs/skyutils/ChangeLog9
-rw-r--r--dev-libs/skyutils/files/digest-skyutils-2.11
-rw-r--r--dev-libs/skyutils/skyutils-2.1.ebuild24
3 files changed, 34 insertions, 0 deletions
diff --git a/dev-libs/skyutils/ChangeLog b/dev-libs/skyutils/ChangeLog
new file mode 100644
index 000000000000..681c89ed7756
--- /dev/null
+++ b/dev-libs/skyutils/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-libs/skyutils
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/skyutils/ChangeLog,v 1.1 2002/11/02 07:24:24 george Exp $
+
+*skyutils-2.1 (23 Aug 2002)
+
+ 23 Aug 2002; George Shapovalov <george@gentoo.org> skytuils-2.1.ebuild :
+ Initial import. Ebuild submitted by Bob Koutsky <bck@webohme.cz>.
+ Skyutils is assorted collection of helpful C functions.
diff --git a/dev-libs/skyutils/files/digest-skyutils-2.1 b/dev-libs/skyutils/files/digest-skyutils-2.1
new file mode 100644
index 000000000000..a5e388fd277a
--- /dev/null
+++ b/dev-libs/skyutils/files/digest-skyutils-2.1
@@ -0,0 +1 @@
+MD5 eabb34b8b55378e5c5ad31e7117b5b3a skyutils-2.1.tar.gz 144988
diff --git a/dev-libs/skyutils/skyutils-2.1.ebuild b/dev-libs/skyutils/skyutils-2.1.ebuild
new file mode 100644
index 000000000000..6142757aea69
--- /dev/null
+++ b/dev-libs/skyutils/skyutils-2.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/skyutils/skyutils-2.1.ebuild,v 1.1 2002/11/02 07:24:24 george Exp $
+
+DESCRIPTION="Library of assorted C utility functions."
+HOMEPAGE="http://zekiller.skytech.org/coders_en.html"
+SRC_URI="http://zekiller.skytech.org/fichiers/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~sparc64"
+
+DEPEND="virtual/glibc"
+
+S="${WORKDIR}/skyutils"
+
+src_compile() {
+ econf || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+}