diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-02 04:45:46 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-02 04:45:46 +0000 |
commit | e8c7d4519436043b969b1abd1991771c3e883afd (patch) | |
tree | 7071cb97a62ef7a9bdfb3ba8c4f1d3b103a980d8 /app-doc | |
parent | Fix segfaults due to lack of error checking #90540 by Tiago Freire. (diff) | |
download | gentoo-2-e8c7d4519436043b969b1abd1991771c3e883afd.tar.gz gentoo-2-e8c7d4519436043b969b1abd1991771c3e883afd.tar.bz2 gentoo-2-e8c7d4519436043b969b1abd1991771c3e883afd.zip |
initial import
(Portage version: 2.0.51.21)
Diffstat (limited to 'app-doc')
4 files changed, 33 insertions, 0 deletions
diff --git a/app-doc/single-unix-specification/ChangeLog b/app-doc/single-unix-specification/ChangeLog new file mode 100644 index 000000000000..f634388fbc6d --- /dev/null +++ b/app-doc/single-unix-specification/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-doc/single-unix-specification +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/single-unix-specification/ChangeLog,v 1.1 2005/05/02 04:45:46 vapier Exp $ + +*single-unix-specification-3 (02 May 2005) + + 02 May 2005; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/app-doc/single-unix-specification/Manifest b/app-doc/single-unix-specification/Manifest new file mode 100644 index 000000000000..8aee17c4165a --- /dev/null +++ b/app-doc/single-unix-specification/Manifest @@ -0,0 +1,2 @@ +MD5 f1041759abee53772c87fd3b56241e7c single-unix-specification-3.ebuild 552 +MD5 3ae17ded45bb56e47630c89d4e114b42 files/digest-single-unix-specification-3 59 diff --git a/app-doc/single-unix-specification/files/digest-single-unix-specification-3 b/app-doc/single-unix-specification/files/digest-single-unix-specification-3 new file mode 100644 index 000000000000..94dacbc3aca4 --- /dev/null +++ b/app-doc/single-unix-specification/files/digest-single-unix-specification-3 @@ -0,0 +1 @@ +MD5 362fad0dc08221a2336c48609d8e082b susv3.tar.bz2 2213490 diff --git a/app-doc/single-unix-specification/single-unix-specification-3.ebuild b/app-doc/single-unix-specification/single-unix-specification-3.ebuild new file mode 100644 index 000000000000..a9aed3517f49 --- /dev/null +++ b/app-doc/single-unix-specification/single-unix-specification-3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/single-unix-specification/single-unix-specification-3.ebuild,v 1.1 2005/05/02 04:45:46 vapier Exp $ + +DESCRIPTION="The Single UNIX Specification, Version 3, 2004 Edition (8 Volumes)" +HOMEPAGE="http://www.opengroup.org/bookstore/catalog/t041.htm" +SRC_URI="http://www.opengroup.org/onlinepubs/009695399/download/susv3.tar.bz2" + +LICENSE="as-is" +SLOT="3" +KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sparc x86" +IUSE="" +RESTRICT="nomirror" + +DEPEND="" + +S=${WORKDIR}/susv3 + +src_install() { + insinto /usr/share/doc/${PF}/html + doins -r * || die "doins" +} |