diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2013-03-11 14:39:40 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2013-03-11 14:39:40 +0000 |
commit | e61a87aa891ebdbdc3033f3c5e77f53d71e9f229 (patch) | |
tree | 8bacd5bf81f7b7bc69a51b30951bb52771f48ccc /app-crypt/oclhashcat-plus-bin | |
parent | Drop versions that depend on old ati-drivers. (diff) | |
download | gentoo-2-e61a87aa891ebdbdc3033f3c5e77f53d71e9f229.tar.gz gentoo-2-e61a87aa891ebdbdc3033f3c5e77f53d71e9f229.tar.bz2 gentoo-2-e61a87aa891ebdbdc3033f3c5e77f53d71e9f229.zip |
Drop versions that depend on old ati-drivers.
(Portage version: 2.1.11.52/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-crypt/oclhashcat-plus-bin')
4 files changed, 6 insertions, 307 deletions
diff --git a/app-crypt/oclhashcat-plus-bin/ChangeLog b/app-crypt/oclhashcat-plus-bin/ChangeLog index cc4076171bd4..b7549ba4a8ec 100644 --- a/app-crypt/oclhashcat-plus-bin/ChangeLog +++ b/app-crypt/oclhashcat-plus-bin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-crypt/oclhashcat-plus-bin # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/oclhashcat-plus-bin/ChangeLog,v 1.7 2013/02/03 01:55:07 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/oclhashcat-plus-bin/ChangeLog,v 1.8 2013/03/11 14:39:40 chithanh Exp $ + + 11 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + -oclhashcat-plus-bin-0.081.ebuild, -oclhashcat-plus-bin-0.09.ebuild, + -oclhashcat-plus-bin-0.12.ebuild: + Drop versions that depend on old ati-drivers. *oclhashcat-plus-bin-0.13 (03 Feb 2013) diff --git a/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.081.ebuild b/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.081.ebuild deleted file mode 100644 index d6f8e953b955..000000000000 --- a/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.081.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.081.ebuild,v 1.3 2012/07/04 17:51:22 zerochaos Exp $ - -EAPI=4 - -inherit eutils pax-utils - -DESCRIPTION="An opencl multihash cracker" -HOMEPAGE="http://hashcat.net/oclhashcat-plus/" - -MY_P="oclHashcat-plus-${PV}" -SRC_URI="amd64? ( http://hashcat.net/files/${MY_P}-64.7z ) \ - x86? ( http://hashcat.net/files/${MY_P}-32.7z )" - -LICENSE="hashcat" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" - -IUSE_VIDEO_CARDS="video_cards_fglrx - video_cards_nvidia" - -IUSE="${IUSE_VIDEO_CARDS}" - -RDEPEND="sys-libs/zlib - video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) - video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 )" -DEPEND="${RDEPEND} - app-arch/p7zip" - -#S="${WORKDIR}/${MY_P}" -#temporary hack needed due to 0.81 patch release -S="${WORKDIR}/oclHashcat-plus-0.08" - -RESTRICT="strip" -QA_PREBUILT="*Hashcat-plus*.bin" - -src_install() { - dodoc docs/* - rm -r *.exe docs || die - #patches already in aircrack-ng - rm -r contrib/aircrack-ng_r1959 || die - - #the current release (0.08) seperates 64bit from 32 bit, will he stay with this? - #if ! use amd64; then - # rm oclHashcat-plus64.bin || die - # rm cudaHashcat-plus64.bin || die - # rm kernels/4098/*64* kernels/4318/*64* || die - #fi - #if ! use x86; then - # rm oclHashcat-plus32.bin || die - # rm cudaHashcat-plus32.bin || die - # rm kernels/4098/*32* kernels/4318/*32* || die - #fi - if ! use video_cards_fglrx; then - rm -r kernels/4098 || die - rm oclHashcat-plus*.bin || die - fi - if ! use video_cards_nvidia; then - rm -r kernels/4318 || die - rm cudaHashcat-plus*.bin || die - fi - pax-mark m *Hashcat-plus*.bin - - insinto /opt/${PN} - doins -r "${S}"/* || die "Copy files failed" - - dodir /opt/bin - - cat <<-EOF > "${ED}"/opt/bin/oclhashcat-plus - #! /bin/sh - echo "oclHashcat-plus and all related files have been installed in /opt/${PN}" - echo "Please run one of the following binaries to use gpu accelerated hashcat:" - EOF - - for x in oclHashcat-plus64.bin oclHashcat-plus32.bin cudaHashcat-plus64.bin cudaHashcat-plus32.bin - do - if [ -f "${ED}"/opt/${PN}/${x} ] - then - case "${x}" in - oclHashcat-plus64.bin) - echo "echo '64 bit ATI accelerated \"oclHashcat-plus64.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - oclHashcat-plus32.bin) - echo "echo '32 bit ATI accelerated \"oclHashcat-plus32.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - cudaHashcat-plus64.bin) - echo "echo '64 bit NVIDIA accelerated \"cudaHashcat-plus64.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - cudaHashcat-plus32.bin) - echo "echo '32 bit NVIDIA accelerated \"cudaHashcat-plus32.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - esac - - fperms +x /opt/${PN}/${x} - - cat <<-EOF > "${ED}"/opt/bin/${x} - #! /bin/sh - cd /opt/${PN} - echo "Warning: ${x} is running from /opt/${PN} so be careful of relative paths." - exec ./${x} "\$@" - EOF - - fperms +x /opt/bin/${x} - - fi - done - - fperms +x /opt/bin/oclhashcat-plus - fowners root:video /opt/${PN} - einfo "oclhashcat-plus can be run as user if you are in the video group" -} diff --git a/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.09.ebuild b/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.09.ebuild deleted file mode 100644 index f4cc21a498ce..000000000000 --- a/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.09.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.09.ebuild,v 1.2 2012/10/30 16:30:44 zerochaos Exp $ - -EAPI=4 - -inherit eutils pax-utils - -DESCRIPTION="An opencl multihash cracker" -HOMEPAGE="http://hashcat.net/oclhashcat-plus/" - -MY_P="oclHashcat-plus-${PV}" -SRC_URI="http://hashcat.net/files/${MY_P}.7z" - -LICENSE="hashcat" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" - -IUSE_VIDEO_CARDS="video_cards_fglrx - video_cards_nvidia" - -IUSE="${IUSE_VIDEO_CARDS}" - -RDEPEND="sys-libs/zlib - video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-304.32 ) - video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.8 )" -DEPEND="${RDEPEND} - app-arch/p7zip" - -S="${WORKDIR}/${MY_P}" - -RESTRICT="strip" -QA_PREBUILT="*Hashcat-plus*.bin" - -src_install() { - dodoc docs/* - rm -r *.exe docs || die - - if ! use video_cards_fglrx; then - rm -r kernels/4098 || die - rm oclHashcat-plus*.bin || die - fi - if ! use video_cards_nvidia; then - rm -r kernels/4318 || die - rm cudaHashcat-plus*.bin || die - fi - pax-mark m *Hashcat-plus*.bin - - insinto /opt/${PN} - doins -r "${S}"/* || die "Copy files failed" - - dodir /opt/bin - - cat <<-EOF > "${ED}"/opt/bin/oclhashcat-plus - #! /bin/sh - echo "oclHashcat-plus and all related files have been installed in /opt/${PN}" - echo "Please run one of the following binaries to use gpu accelerated hashcat:" - EOF - - for x in oclHashcat-plus64.bin oclHashcat-plus32.bin cudaHashcat-plus64.bin cudaHashcat-plus32.bin - do - if [ -f "${ED}"/opt/${PN}/${x} ] - then - case "${x}" in - oclHashcat-plus64.bin) - echo "echo '64 bit ATI accelerated \"oclHashcat-plus64.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - oclHashcat-plus32.bin) - echo "echo '32 bit ATI accelerated \"oclHashcat-plus32.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - cudaHashcat-plus64.bin) - echo "echo '64 bit NVIDIA accelerated \"cudaHashcat-plus64.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - cudaHashcat-plus32.bin) - echo "echo '32 bit NVIDIA accelerated \"cudaHashcat-plus32.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - esac - - fperms +x /opt/${PN}/${x} - - cat <<-EOF > "${ED}"/opt/bin/${x} - #! /bin/sh - cd /opt/${PN} - echo "Warning: ${x} is running from /opt/${PN} so be careful of relative paths." - exec ./${x} "\$@" - EOF - - fperms +x /opt/bin/${x} - - fi - done - - fperms +x /opt/bin/oclhashcat-plus - fowners root:video /opt/${PN} - einfo "oclhashcat-plus can be run as user if you are in the video group" -} diff --git a/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.12.ebuild b/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.12.ebuild deleted file mode 100644 index e80e4b96c6f7..000000000000 --- a/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.12.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.12.ebuild,v 1.1 2012/12/31 21:20:04 zerochaos Exp $ - -EAPI=4 - -inherit eutils pax-utils - -DESCRIPTION="An opencl multihash cracker" -HOMEPAGE="http://hashcat.net/oclhashcat-plus/" - -MY_P="oclHashcat-plus-${PV}" -SRC_URI="http://hashcat.net/files/${MY_P}.7z" - -LICENSE="hashcat" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" - -IUSE_VIDEO_CARDS="video_cards_fglrx - video_cards_nvidia" - -IUSE="${IUSE_VIDEO_CARDS}" - -RDEPEND="sys-libs/zlib - video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-304.51 ) - video_cards_fglrx? ( =x11-drivers/ati-drivers-12.8 )" -DEPEND="${RDEPEND} - app-arch/p7zip" - -S="${WORKDIR}/${MY_P}" - -RESTRICT="strip" -QA_PREBUILT="*Hashcat-plus*.bin" - -src_install() { - dodoc docs/* - rm -r *.exe docs || die - use x86 && rm *Hashcat-plus64* - use amd64 && rm *Hashcat-plus32* - - if ! use video_cards_fglrx; then - rm -r kernels/4098 || die - rm oclHashcat-plus*.bin || die - fi - if ! use video_cards_nvidia; then - rm -r kernels/4318 || die - rm cudaHashcat-plus*.bin || die - fi - pax-mark m *Hashcat-plus*.bin - - insinto /opt/${PN} - doins -r "${S}"/* || die "Copy files failed" - - dodir /opt/bin - - cat <<-EOF > "${ED}"/opt/bin/oclhashcat-plus - #! /bin/sh - echo "oclHashcat-plus and all related files have been installed in /opt/${PN}" - echo "Please run one of the following binaries to use gpu accelerated hashcat:" - EOF - - for x in oclHashcat-plus64.bin oclHashcat-plus32.bin cudaHashcat-plus64.bin cudaHashcat-plus32.bin - do - if [ -f "${ED}"/opt/${PN}/${x} ] - then - case "${x}" in - oclHashcat-plus64.bin) - echo "echo '64 bit ATI accelerated \"oclHashcat-plus64.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - oclHashcat-plus32.bin) - echo "echo '32 bit ATI accelerated \"oclHashcat-plus32.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - cudaHashcat-plus64.bin) - echo "echo '64 bit NVIDIA accelerated \"cudaHashcat-plus64.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - cudaHashcat-plus32.bin) - echo "echo '32 bit NVIDIA accelerated \"cudaHashcat-plus32.bin\"'" >> "${ED}"/opt/bin/oclhashcat-plus - ;; - esac - - fperms +x /opt/${PN}/${x} - - cat <<-EOF > "${ED}"/opt/bin/${x} - #! /bin/sh - cd /opt/${PN} - echo "Warning: ${x} is running from /opt/${PN} so be careful of relative paths." - exec ./${x} "\$@" - EOF - - fperms +x /opt/bin/${x} - - fi - done - - fperms +x /opt/bin/oclhashcat-plus - fowners root:video /opt/${PN} - einfo "oclhashcat-plus can be run as user if you are in the video group" -} |