diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-embedded/gnap | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-embedded/gnap')
-rw-r--r-- | dev-embedded/gnap/Manifest | 2 | ||||
-rw-r--r-- | dev-embedded/gnap/gnap-2.0.ebuild | 39 | ||||
-rw-r--r-- | dev-embedded/gnap/metadata.xml | 7 |
3 files changed, 48 insertions, 0 deletions
diff --git a/dev-embedded/gnap/Manifest b/dev-embedded/gnap/Manifest new file mode 100644 index 000000000000..22e66d2d663c --- /dev/null +++ b/dev-embedded/gnap/Manifest @@ -0,0 +1,2 @@ +DIST gnap-core-2.0.tar 12257280 SHA256 84c279c1305db560f5e78c3a182202b0b32383ef3e6e3e02afd74782b9f3a857 SHA512 3da9ea5a1a64ff9b1dc58b1efca33079bc48823a96c2e47c878d3651276943be7ec03be2d9ad402818263faaf2415dad0b45f479f60b2fd37f8a7d8a4433ffeb WHIRLPOOL e5aedcd99586e6a8cf7c3e2207f02a9e24d5d3bb82e8480fe0fb25f5817457e4e8a40807bfd32efdaafdf5c91e768868d55c047bea90f91e9a859f1511524d20 +DIST gnap-tools-2.0.tar.bz2 26874 SHA256 925083618f6d19d70b0c3d4236a374ea1ea72abb1ee7999973b653751bda4a6b SHA512 cd8de371aaeee9b5dac5bebb4961855e78cd173a1de99056671e0071be2376c3fd45fb7d635786ad22f3ff413fbcd6d2b710b7c8ca4e99bdfbb09b31e7bf4b52 WHIRLPOOL eb5434a7ca3ac1f7ff5f3d2377a771e865600085d957287892eb0648cd4c3dac7101bff4e144d80197de9b4acd1455e0f59fdaead51e4a1d8a515a01ab4c5477 diff --git a/dev-embedded/gnap/gnap-2.0.ebuild b/dev-embedded/gnap/gnap-2.0.ebuild new file mode 100644 index 000000000000..a214fb60cf6a --- /dev/null +++ b/dev-embedded/gnap/gnap-2.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +MY_P="${P/gnap/gnap-tools}" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="Gentoo-based Network Appliance building system" +HOMEPAGE="http://embedded.gentoo.org/gnap.xml" + +SRC_URI="mirror://gentoo/${MY_P}.tar.bz2 + !minimal? ( mirror://gentoo/${PN}-core-${PV}.tar )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="minimal" + +RDEPEND="app-cdr/cdrtools + sys-fs/dosfstools + <sys-boot/syslinux-5" + +src_unpack() { + unpack ${MY_P}.tar.bz2 +} + +src_install() { + dobin gnap_overlay + doman gnap_overlay.1 + + dodoc README.upgrading + + dodir /usr/lib/gnap + insinto /usr/lib/gnap + if ! use minimal; then + newins "${DISTDIR}"/${PN}-core-${PV}.tar ${PN}-core.tar + doins -r mbr + doins -r examples + fi +} diff --git a/dev-embedded/gnap/metadata.xml b/dev-embedded/gnap/metadata.xml new file mode 100644 index 000000000000..91f4e72fb544 --- /dev/null +++ b/dev-embedded/gnap/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> +</pkgmetadata> |