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 /x11-apps/radeontop | |
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 'x11-apps/radeontop')
-rw-r--r-- | x11-apps/radeontop/Manifest | 2 | ||||
-rw-r--r-- | x11-apps/radeontop/metadata.xml | 11 | ||||
-rw-r--r-- | x11-apps/radeontop/radeontop-0.7-r1.ebuild | 47 | ||||
-rw-r--r-- | x11-apps/radeontop/radeontop-0.8.ebuild | 48 | ||||
-rw-r--r-- | x11-apps/radeontop/radeontop-9999.ebuild | 37 |
5 files changed, 145 insertions, 0 deletions
diff --git a/x11-apps/radeontop/Manifest b/x11-apps/radeontop/Manifest new file mode 100644 index 000000000000..03d8e4d33259 --- /dev/null +++ b/x11-apps/radeontop/Manifest @@ -0,0 +1,2 @@ +DIST radeontop-0.7.tar.gz 28353 SHA256 57542644d95a05e321223b2137836cc300935d8615110ed134c2d83e3ff0058d SHA512 92d98c0849ebfabaa0b7086461e41c736020e4a9af1e5e31dc0d2e098496a6eebb878fd4a5694035a9bb48f33267e31802063e413becf8f9c2924355fdf60b81 WHIRLPOOL 045c1ee5a6dcc1c2fbe6ec86fabad9723938298685e37fa0efc6967ab621ac9087832a10b636424e8d9f1c8fdb5d403a64a1fe0a0bea79810ed7d5f751723a10 +DIST radeontop-0.8.tar.gz 29719 SHA256 4430e1aaca895d70ea496a9b14010d9d94cadd6269b28a66104af89ff29d8489 SHA512 8c711377a617cc071599ef2c3355bb1f5e68aa69e2999396272a93657c5ba448005e0829dea34666e88466c9fd7da2f58cf44ccd542be4d63a72b3ae3e1fc04a WHIRLPOOL 4c95e3aca57ad75d71f15969b91131eb7e4a73e686ca22cc2df8f2e946327ccc41d8dabc02930e3d2cdb292758887864ce4ab3e4a1c6bf799c934fe1df857665 diff --git a/x11-apps/radeontop/metadata.xml b/x11-apps/radeontop/metadata.xml new file mode 100644 index 000000000000..b636395628b0 --- /dev/null +++ b/x11-apps/radeontop/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>nikoli@gmx.us</email> + </maintainer> + <herd>proxy-maintainers</herd> + <upstream> + <remote-id type="github">clbr/radeontop</remote-id> + </upstream> +</pkgmetadata> diff --git a/x11-apps/radeontop/radeontop-0.7-r1.ebuild b/x11-apps/radeontop/radeontop-0.7-r1.ebuild new file mode 100644 index 000000000000..b0f467c7eeff --- /dev/null +++ b/x11-apps/radeontop/radeontop-0.7-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils toolchain-funcs + +DESCRIPTION="Utility to view Radeon GPU utilization" +HOMEPAGE="https://github.com/clbr/radeontop" +LICENSE="GPL-3" +SRC_URI="https://github.com/clbr/radeontop/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=" + sys-libs/ncurses + x11-libs/libpciaccess + nls? ( sys-libs/ncurses[unicode] virtual/libintl ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_prepare() { + epatch_user + +cat > include/version.h << EOF || die +#ifndef VER_H +#define VER_H + +#define VERSION "${PV}" + +#endif +EOF + >getver.sh || die + touch .git || die +} + +src_configure() { + tc-export CC + export nls=$(usex nls 1 0) + # Do not add -g or -s to CFLAGS + export plain=1 +} diff --git a/x11-apps/radeontop/radeontop-0.8.ebuild b/x11-apps/radeontop/radeontop-0.8.ebuild new file mode 100644 index 000000000000..fc899a072713 --- /dev/null +++ b/x11-apps/radeontop/radeontop-0.8.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils toolchain-funcs + +DESCRIPTION="Utility to view Radeon GPU utilization" +HOMEPAGE="https://github.com/clbr/radeontop" +LICENSE="GPL-3" +SRC_URI="https://github.com/clbr/radeontop/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=" + sys-libs/ncurses + x11-libs/libpciaccess + x11-libs/libdrm + nls? ( sys-libs/ncurses[unicode] virtual/libintl ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_prepare() { + epatch_user + +cat > include/version.h << EOF || die +#ifndef VER_H +#define VER_H + +#define VERSION "${PV}" + +#endif +EOF + >getver.sh || die + touch .git || die +} + +src_configure() { + tc-export CC + export nls=$(usex nls 1 0) + # Do not add -g or -s to CFLAGS + export plain=1 +} diff --git a/x11-apps/radeontop/radeontop-9999.ebuild b/x11-apps/radeontop/radeontop-9999.ebuild new file mode 100644 index 000000000000..083144eb06bb --- /dev/null +++ b/x11-apps/radeontop/radeontop-9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils toolchain-funcs git-r3 + +DESCRIPTION="Utility to view Radeon GPU utilization" +HOMEPAGE="https://github.com/clbr/radeontop" +LICENSE="GPL-3" +EGIT_REPO_URI="https://github.com/clbr/radeontop.git" + +SLOT="0" +KEYWORDS="" +IUSE="nls" + +RDEPEND=" + sys-libs/ncurses + x11-libs/libpciaccess + x11-libs/libdrm + nls? ( sys-libs/ncurses[unicode] virtual/libintl ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_prepare() { + epatch_user +} + +src_configure() { + tc-export CC + export nls=$(usex nls 1 0) + # Do not add -g or -s to CFLAGS + export plain=1 +} |