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-libs/dotconf | |
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-libs/dotconf')
-rw-r--r-- | dev-libs/dotconf/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/dotconf/dotconf-1.3.ebuild | 31 | ||||
-rw-r--r-- | dev-libs/dotconf/metadata.xml | 9 |
3 files changed, 41 insertions, 0 deletions
diff --git a/dev-libs/dotconf/Manifest b/dev-libs/dotconf/Manifest new file mode 100644 index 000000000000..12e00309e6d8 --- /dev/null +++ b/dev-libs/dotconf/Manifest @@ -0,0 +1 @@ +DIST dotconf-1.3.tar.gz 333301 SHA256 b0bccd7251df50b68b82888c5f9fa7932bd68ee3b9e880bce9456e692bf13e8e SHA512 ced0e66f70d11a309e77add1bfac1da8e85dcbe193633bd4bd1ae4bfd043b66880406e93ec18327b8c5d3de8d4bfc5278db6e5cb39b030ee1dabfa1ce267a98e WHIRLPOOL 431a55f3efd786d448597c8cdb0498092420050cf51c4ea278b02505645807fca7951c85710f51c7b5ccbbe9e891fde318a143499e3b74eef2864da7b4490475 diff --git a/dev-libs/dotconf/dotconf-1.3.ebuild b/dev-libs/dotconf/dotconf-1.3.ebuild new file mode 100644 index 000000000000..6705ed1e747f --- /dev/null +++ b/dev-libs/dotconf/dotconf-1.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="3" + +inherit eutils + +DESCRIPTION="dot.conf configuration file parser" +HOMEPAGE="http://www.github.com/williamh/dotconf" +SRC_URI="mirror://gentoo/${P}.tar.gz" +LICENSE="LGPL-2.1" + +SLOT="0" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" +IUSE="" +DEPEND=">=sys-devel/autoconf-2.58" +RDEPEND="" + +src_compile() { + emake CC=$(tc-getCC) || die +} + +src_install() { + emake DESTDIR="${D}" install || die +} + +pkg_postinst() { + ewarn 'This version requires that you run revdep-rebuild after' + ewarn 'the upgrade.' +} diff --git a/dev-libs/dotconf/metadata.xml b/dev-libs/dotconf/metadata.xml new file mode 100644 index 000000000000..2f0bbe44021a --- /dev/null +++ b/dev-libs/dotconf/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> +<herd>accessibility</herd> +<maintainer> + <email>williamh@gentoo.org</email> +</maintainer> +</pkgmetadata> |