diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2006-09-30 03:46:28 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2006-09-30 03:46:28 +0000 |
commit | 95e658bf55ea8e71f2c2168c19a1b25bb2dfaf55 (patch) | |
tree | 758a0bbd321f6e6a65ae887d83e83d24b2c661f9 /sys-apps/x86info | |
parent | Added to x86 to fix BioPerl dependencies and not leave stable users unsupported (diff) | |
download | gentoo-2-95e658bf55ea8e71f2c2168c19a1b25bb2dfaf55.tar.gz gentoo-2-95e658bf55ea8e71f2c2168c19a1b25bb2dfaf55.tar.bz2 gentoo-2-95e658bf55ea8e71f2c2168c19a1b25bb2dfaf55.zip |
Version bump.
(Portage version: 2.1.2_pre2)
Diffstat (limited to 'sys-apps/x86info')
-rw-r--r-- | sys-apps/x86info/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/x86info/files/digest-x86info-1.20 | 3 | ||||
-rw-r--r-- | sys-apps/x86info/x86info-1.20.ebuild | 48 |
3 files changed, 57 insertions, 1 deletions
diff --git a/sys-apps/x86info/ChangeLog b/sys-apps/x86info/ChangeLog index 841fa6820e42..c9a76b80b2bb 100644 --- a/sys-apps/x86info/ChangeLog +++ b/sys-apps/x86info/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/x86info # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/x86info/ChangeLog,v 1.13 2006/09/30 01:32:23 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/x86info/ChangeLog,v 1.14 2006/09/30 03:46:28 robbat2 Exp $ + +*x86info-1.20 (30 Sep 2006) + + 30 Sep 2006; Robin H. Johnson <robbat2@gentoo.org> +x86info-1.20.ebuild: + Version bump. 30 Sep 2006; Robin H. Johnson <robbat2@gentoo.org> x86info-1.18.ebuild: Add ~amd64 so I can use it. diff --git a/sys-apps/x86info/files/digest-x86info-1.20 b/sys-apps/x86info/files/digest-x86info-1.20 new file mode 100644 index 000000000000..db523076b564 --- /dev/null +++ b/sys-apps/x86info/files/digest-x86info-1.20 @@ -0,0 +1,3 @@ +MD5 fc593ee2510fc2e265de9c2681170842 x86info-1.20.tgz 54364 +RMD160 7873dbafd7bd1420591cea2e073fa6d768dafd5e x86info-1.20.tgz 54364 +SHA256 7bf65db8dfb9e9deea51de9589ee2b62dd20345ec69869ff0da39716a335b12d x86info-1.20.tgz 54364 diff --git a/sys-apps/x86info/x86info-1.20.ebuild b/sys-apps/x86info/x86info-1.20.ebuild new file mode 100644 index 000000000000..4ff66b3c7e00 --- /dev/null +++ b/sys-apps/x86info/x86info-1.20.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/x86info/x86info-1.20.ebuild,v 1.1 2006/09/30 03:46:28 robbat2 Exp $ + +inherit eutils + +DESCRIPTION="Dave Jones' handy, informative x86 CPU diagnostic utility" +HOMEPAGE="http://www.codemonkey.org.uk/projects/x86info/" +SRC_URI="http://www.codemonkey.org.uk/projects/x86info/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* ~x86 ~amd64" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/1.12b-pic.patch +} + +src_compile() { + emake x86info CFLAGS="${CFLAGS}" || die "emake failed" +} + +src_install() { + dobin x86info || die + + insinto /etc/modules.d + newins "${FILESDIR}"/x86info-modules.conf-rc x86info + + dodoc TODO README ChangeLog + doman x86info.1 + insinto /usr/share/doc/${PF} + doins -r results + prepalldocs +} + +pkg_postinst() { + ewarn "Your kernel must be built with the following options" + ewarn "set to Y or M" + ewarn " Processor type and features ->" + ewarn " [*] /dev/cpu/*/msr - Model-specific register support" + ewarn " [*] /dev/cpu/*/cpuid - CPU information support" +} |