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 | 7bbd4b880ebe23f56bf11d6a7410362ed100253d (patch) | |
tree | 0d9a5b2b65b68af6ec2aed66066f3eb1fdee0e48 /app-doc/single-unix-specification | |
parent | Fix segfaults due to lack of error checking #90540 by Tiago Freire. (diff) | |
download | historical-7bbd4b880ebe23f56bf11d6a7410362ed100253d.tar.gz historical-7bbd4b880ebe23f56bf11d6a7410362ed100253d.tar.bz2 historical-7bbd4b880ebe23f56bf11d6a7410362ed100253d.zip |
initial import
Package-Manager: portage-2.0.51.21
Diffstat (limited to 'app-doc/single-unix-specification')
4 files changed, 34 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..be39d7c01d74 --- /dev/null +++ b/app-doc/single-unix-specification/Manifest @@ -0,0 +1,3 @@ +MD5 c647d0f401e8c85d16fe45d902f0e5b6 single-unix-specification-3.ebuild 707 +MD5 937f3d56f27340a1c685cf94990d92db ChangeLog 378 +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" +} |