diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-02-26 23:50:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-02-26 23:50:05 +0000 |
commit | ed40676841e317a2aafa04c4c804bb6043864740 (patch) | |
tree | 91c5e4b12acc09eabb2b1234eb633aa78af224d2 /media-video/amdcccle/amdcccle-11.9.ebuild | |
parent | dc106bfbeb980942a8490753d6883eb34b13ea12 (diff) |
repo cleanup...drop old ebuilds, drop ebuilds already in portage tree
Diffstat (limited to 'media-video/amdcccle/amdcccle-11.9.ebuild')
-rw-r--r-- | media-video/amdcccle/amdcccle-11.9.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/media-video/amdcccle/amdcccle-11.9.ebuild b/media-video/amdcccle/amdcccle-11.9.ebuild deleted file mode 100644 index f0ed060b..00000000 --- a/media-video/amdcccle/amdcccle-11.9.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 - -inherit eutils versionator - -DESCRIPTION="AMD Catalyst Control Center Linux Edition" -HOMEPAGE="http://ati.amd.com" -# 8.ble will be used for beta releases. -if [[ $(get_major_version) -gt 8 ]]; then - ATI_URL="http://www2.ati.com/drivers/linux/" - SRC_URI="${ATI_URL}/ati-driver-installer-${PV/./-}-x86.x86_64.run" - FOLDER_PREFIX="common/" -else - SRC_URI="https://launchpad.net/ubuntu/natty/+source/fglrx-installer/2:${PV}-0ubuntu1/+files/fglrx-installer_${PV}.orig.tar.gz" - FOLDER_PREFIX="" -fi -IUSE="" - -LICENSE="QPL-1.0 as-is" -KEYWORDS="~amd64 ~x86" -SLOT="1" - -RDEPEND="x11-drivers/ati-drivers[-qt4(-)] - x11-libs/qt-core - x11-libs/qt-gui" - -DEPEND="" -S="${WORKDIR}" - -QA_EXECSTACK="opt/bin/amdcccle" - -src_unpack() { - if [[ $(get_major_version) -gt 8 ]]; then - # Switching to a standard way to extract the files since otherwise no signature file - # would be created - local src="${DISTDIR}/${A}" - sh "${src}" --extract "${S}" - else - unpack ${A} - fi -} - -src_compile() { - echo -} - -src_install() { - insinto /usr/share - doins -r ${FOLDER_PREFIX}usr/share/ati - insinto /usr/share/pixmaps - doins ${FOLDER_PREFIX}usr/share/icons/ccc_large.xpm - make_desktop_entry amdcccle 'ATI Catalyst Control Center' \ - ccc_large System - - use x86 && ARCH_BASE="x86" - use amd64 && ARCH_BASE="x86_64" - into /opt - dobin arch/"${ARCH_BASE}"/usr/X11R6/bin/amdcccle -} |