summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Holm <dholm@gentoo.org>2004-03-01 16:38:09 +0000
committerDavid Holm <dholm@gentoo.org>2004-03-01 16:38:09 +0000
commit113e09ccfa41e98e20bc71ae9f20b0baacdf8bbc (patch)
tree7c147c4ebc06f2dc5a5ddb94a2a8ca508aeea0f1 /dev-libs/shhopt
parentfilter Os flag, mark 1.2.6 x86 (diff)
downloadhistorical-113e09ccfa41e98e20bc71ae9f20b0baacdf8bbc.tar.gz
historical-113e09ccfa41e98e20bc71ae9f20b0baacdf8bbc.tar.bz2
historical-113e09ccfa41e98e20bc71ae9f20b0baacdf8bbc.zip
Initial import of shhopt, lib for reading commandline arguments
Diffstat (limited to 'dev-libs/shhopt')
-rw-r--r--dev-libs/shhopt/ChangeLog10
-rw-r--r--dev-libs/shhopt/Manifest4
-rw-r--r--dev-libs/shhopt/files/digest-shhopt-1.1.71
-rw-r--r--dev-libs/shhopt/metadata.xml9
-rw-r--r--dev-libs/shhopt/shhopt-1.1.7.ebuild21
5 files changed, 45 insertions, 0 deletions
diff --git a/dev-libs/shhopt/ChangeLog b/dev-libs/shhopt/ChangeLog
new file mode 100644
index 000000000000..87b3e0b3f2a1
--- /dev/null
+++ b/dev-libs/shhopt/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-libs/shhopt
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/shhopt/ChangeLog,v 1.1 2004/03/01 16:38:09 dholm Exp $
+
+*shhopt-1.1.7 (01 Mar 2004)
+
+ 01 Mar 2004; David Holm <dholm@gentoo.org> metadata.xml,
+ shhopt-1.1.7.ebuild:
+ Initial import.
+
diff --git a/dev-libs/shhopt/Manifest b/dev-libs/shhopt/Manifest
new file mode 100644
index 000000000000..19f783fccb23
--- /dev/null
+++ b/dev-libs/shhopt/Manifest
@@ -0,0 +1,4 @@
+MD5 6d27fb9a41db3130c75560992f0b00f7 shhopt-1.1.7.ebuild 568
+MD5 558d571f347bb9f3f4a1c7c1fd711300 metadata.xml 375
+MD5 2c7387fb76289ed662b95cc81c3c54a2 ChangeLog 341
+MD5 92f92cf859c357dfc0cd641f05cc33ee files/digest-shhopt-1.1.7 62
diff --git a/dev-libs/shhopt/files/digest-shhopt-1.1.7 b/dev-libs/shhopt/files/digest-shhopt-1.1.7
new file mode 100644
index 000000000000..d0433500fb7f
--- /dev/null
+++ b/dev-libs/shhopt/files/digest-shhopt-1.1.7
@@ -0,0 +1 @@
+MD5 caf24206354296e8a48771aea1f47fbd shhopt-1.1.7.tar.gz 9923
diff --git a/dev-libs/shhopt/metadata.xml b/dev-libs/shhopt/metadata.xml
new file mode 100644
index 000000000000..a24f7922d53c
--- /dev/null
+++ b/dev-libs/shhopt/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+ <email>dholm@gentoo.org</email>
+ <name>David Holm</name>
+</maintainer>
+<longdescription>C-functions for parsing command line options, both traditional one-character options, and GNU'ish --long-options.</longdescription>
+</pkgmetadata>
diff --git a/dev-libs/shhopt/shhopt-1.1.7.ebuild b/dev-libs/shhopt/shhopt-1.1.7.ebuild
new file mode 100644
index 000000000000..ece27c02d35d
--- /dev/null
+++ b/dev-libs/shhopt/shhopt-1.1.7.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/shhopt/shhopt-1.1.7.ebuild,v 1.1 2004/03/01 16:38:09 dholm Exp $
+
+DESCRIPTION="library for parsing command line options"
+SRC_URI="http://shh.thathost.com/pub-unix/files/${P}.tar.gz"
+HOMEPAGE="http://shh.thathost.com/pub-unix/"
+LICENSE="Artistic"
+DEPEND=""
+IUSE=""
+SLOT="0"
+KEYWORDS="~ppc"
+
+src_compile() {
+ emake || die
+}
+
+src_install () {
+ dolib.a libshhopt.a
+ dodoc ChangeLog CREDITS INSTALL README TODO
+}