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 /app-misc/nut | |
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 'app-misc/nut')
-rw-r--r-- | app-misc/nut/Manifest | 1 | ||||
-rw-r--r-- | app-misc/nut/metadata.xml | 10 | ||||
-rw-r--r-- | app-misc/nut/nut-20.1.ebuild | 29 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-misc/nut/Manifest b/app-misc/nut/Manifest new file mode 100644 index 000000000000..af2fd300212c --- /dev/null +++ b/app-misc/nut/Manifest @@ -0,0 +1 @@ +DIST nut-20.1.tar.gz 1441077 SHA256 3f8c648669d4e9af3a7684fffb74baefb04f29bfe5a847acb3aa9df3540c4c7c SHA512 2ed79fb345f029f5deaed4e23531256f2f76f5ca05ae46d3d5f4503fef663cde81f6695a9b5b741d02c5880ef611fa8495fcce3bcadf1ca8abdbc2b395bced6a WHIRLPOOL 1ae20ff747e77de007281740337dfde19370d621e2bac264ed9922ce691118680ab33ffc97b0c61e529b6c1e9e6567266eb7176ee96e620a0081b68c1db18150 diff --git a/app-misc/nut/metadata.xml b/app-misc/nut/metadata.xml new file mode 100644 index 000000000000..77c9c4eb12f0 --- /dev/null +++ b/app-misc/nut/metadata.xml @@ -0,0 +1,10 @@ +<?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> + <upstream> + <remote-id type="sourceforge">nut</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-misc/nut/nut-20.1.ebuild b/app-misc/nut/nut-20.1.ebuild new file mode 100644 index 000000000000..d57fd102452d --- /dev/null +++ b/app-misc/nut/nut-20.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="Record what you eat and analyze your nutrient levels" +HOMEPAGE="http://nut.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 ~arm ppc x86" + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + OPT="${CFLAGS}" FOODDIR=\\\"/usr/share/nut\\\" \ + nut +} + +src_install() { + insinto /usr/share/nut + doins raw.data/* + + dobin nut + doman nut.1 +} |