diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-08-25 15:35:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-08-25 15:35:25 +0000 |
commit | 7b641d7f97023b75c1f5defec03bacf04d502073 (patch) | |
tree | 625fde64180072dc8cbe2a62dcc616c46fc0d32f /sys-apps/lshw | |
parent | Remove old revision. (diff) | |
download | gentoo-2-7b641d7f97023b75c1f5defec03bacf04d502073.tar.gz gentoo-2-7b641d7f97023b75c1f5defec03bacf04d502073.tar.bz2 gentoo-2-7b641d7f97023b75c1f5defec03bacf04d502073.zip |
old
Diffstat (limited to 'sys-apps/lshw')
-rw-r--r-- | sys-apps/lshw/files/digest-lshw-02.08.01b | 3 | ||||
-rw-r--r-- | sys-apps/lshw/files/digest-lshw-02.09b | 3 | ||||
-rw-r--r-- | sys-apps/lshw/files/lshw-02.06b-cpuid-PIC.patch | 43 | ||||
-rw-r--r-- | sys-apps/lshw/lshw-02.08.01b.ebuild | 49 | ||||
-rw-r--r-- | sys-apps/lshw/lshw-02.09b.ebuild | 50 |
5 files changed, 0 insertions, 148 deletions
diff --git a/sys-apps/lshw/files/digest-lshw-02.08.01b b/sys-apps/lshw/files/digest-lshw-02.08.01b deleted file mode 100644 index 6a011415775c..000000000000 --- a/sys-apps/lshw/files/digest-lshw-02.08.01b +++ /dev/null @@ -1,3 +0,0 @@ -MD5 57c1bb0fec3543641c389726a8844307 lshw-B.02.08.01.tar.gz 1062265 -RMD160 7972640020f7a3e008b6640b76986d899b074f36 lshw-B.02.08.01.tar.gz 1062265 -SHA256 b5e43be355bb7192273a052704b20c4185bcbe8e3f8a66a7d55f75e246075848 lshw-B.02.08.01.tar.gz 1062265 diff --git a/sys-apps/lshw/files/digest-lshw-02.09b b/sys-apps/lshw/files/digest-lshw-02.09b deleted file mode 100644 index 8013bea7030c..000000000000 --- a/sys-apps/lshw/files/digest-lshw-02.09b +++ /dev/null @@ -1,3 +0,0 @@ -MD5 2a51cdb0b1a1e6420a1e386a4348d00f lshw-B.02.09.tar.gz 1104639 -RMD160 ebd6dcc1b2c2f0661dcda06b8fe8e8837660d431 lshw-B.02.09.tar.gz 1104639 -SHA256 28006d62cc1376aa3b02048b33a58f6d29ba420fa93909f41aa3d74183532d5c lshw-B.02.09.tar.gz 1104639 diff --git a/sys-apps/lshw/files/lshw-02.06b-cpuid-PIC.patch b/sys-apps/lshw/files/lshw-02.06b-cpuid-PIC.patch deleted file mode 100644 index b27b3a808d13..000000000000 --- a/sys-apps/lshw/files/lshw-02.06b-cpuid-PIC.patch +++ /dev/null @@ -1,43 +0,0 @@ -The 'cpuid' assembly instruction is notorious for hating PIC. - -Here we code two different versions of the cpuid instruction ... -the first will work when dealing with PIC, while the second is -slightly faster and can be used with non-PIC. - -http://bugs.gentoo.org/61947 - ---- src/core/cpuid.cc -+++ src/core/cpuid.cc -@@ -68,9 +68,6 @@ - - #ifdef __i386__ - --#define cpuid_up(in,a,b,c,d)\ -- asm("cpuid": "=a" (a), "=b" (b), "=c" (c), "=d" (d) : "a" (in)); -- - static void cpuid(int cpunumber, - unsigned long idx, - unsigned long &eax, -@@ -96,7 +93,21 @@ - edx = (*(unsigned long *) (buffer + 12)); - } - else -- cpuid_up(idx, eax, ebx, ecx, edx); -+ asm( -+#ifdef __PIC__ -+ "movl %%ebx,%%edi\n" -+ "cpuid\n" -+ "movl %%ebx,%3\n" -+ "movl %%edi,%%ebx\n" -+ : "=a" (eax), "=c" (ecx), "=d" (edx), "=m" (ebx) -+ : "a" (idx) -+ : "edi" -+#else -+ "cpuid\n" -+ : "=a" (eax), "=c" (ecx), "=d" (edx), "=b" (ebx) -+ : "a" (idx) -+#endif -+ ); - } - - /* Decode Intel TLB and cache info descriptors */ diff --git a/sys-apps/lshw/lshw-02.08.01b.ebuild b/sys-apps/lshw/lshw-02.08.01b.ebuild deleted file mode 100644 index f4d07984de5b..000000000000 --- a/sys-apps/lshw/lshw-02.08.01b.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lshw/lshw-02.08.01b.ebuild,v 1.7 2006/12/03 23:27:07 plasmaroo Exp $ - -inherit flag-o-matic eutils toolchain-funcs - -MAJ_PV=${PV:0:${#PV}-1} -MIN_PVE=${PV:0-1} -MIN_PV=${MIN_PVE/b/B} - -MY_P="$PN-$MIN_PV.$MAJ_PV" -DESCRIPTION="Hardware Lister" -HOMEPAGE="http://ezix.org/project/wiki/HardwareLiSter" -SRC_URI="http://ezix.org/software/files/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc sparc x86" -IUSE="gtk static" - -DEPEND="gtk? ( >=x11-libs/gtk+-2 )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-02.08.01b-build.patch - epatch "${FILESDIR}"/${PN}-02.06b-cpuid-PIC.patch #61947 -} - -src_compile() { - tc-export CC CXX AR - use static && append-ldflags -static - emake || die "make failed" - if use gtk ; then - emake gui || die "make gui failed" - fi -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - - if use gtk ; then - make DESTDIR="${D}" install-gui || die "install gui failed" - fi - - dodoc README docs/* -} diff --git a/sys-apps/lshw/lshw-02.09b.ebuild b/sys-apps/lshw/lshw-02.09b.ebuild deleted file mode 100644 index 696f1f88f394..000000000000 --- a/sys-apps/lshw/lshw-02.09b.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lshw/lshw-02.09b.ebuild,v 1.6 2007/03/26 21:40:21 armin76 Exp $ - -inherit flag-o-matic eutils toolchain-funcs - -MAJ_PV=${PV:0:${#PV}-1} -MIN_PVE=${PV:0-1} -MIN_PV=${MIN_PVE/b/B} - -MY_P="$PN-$MIN_PV.$MAJ_PV" -DESCRIPTION="Hardware Lister" -HOMEPAGE="http://ezix.org/project/wiki/HardwareLiSter" -SRC_URI="http://ezix.org/software/files/${MY_P}.tar.gz" -RESTRICT="strip" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ia64 ppc sparc x86" -IUSE="gtk static" - -DEPEND="gtk? ( >=x11-libs/gtk+-2 )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-02.08.01b-build.patch - epatch "${FILESDIR}"/${PN}-02.09b-cpuid-PIC.patch #61947 -} - -src_compile() { - tc-export CC CXX AR - use static && append-ldflags -static - emake || die "make failed" - if use gtk ; then - emake gui || die "make gui failed" - fi -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - - if use gtk ; then - make DESTDIR="${D}" install-gui || die "install gui failed" - fi - - dodoc README docs/* -} |