public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Dane Smith" <c1pher@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/c1pher:master commit in: dev-util/ati-stream-sdk/
Date: Thu, 24 Feb 2011 19:28:10 +0000 (UTC)	[thread overview]
Message-ID: <b381a159078099f24285e8ab6bfe2e7f0e97aef0.c1pher@gentoo> (raw)

commit:     b381a159078099f24285e8ab6bfe2e7f0e97aef0
Author:     Dane Smith <c1pher <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 24 19:23:19 2011 +0000
Commit:     Dane Smith <c1pher <AT> gentoo <DOT> org>
CommitDate: Thu Feb 24 19:23:19 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/c1pher.git;a=commit;h=b381a159

Fix install into /etc/ in 2.1

---
 dev-util/ati-stream-sdk/Manifest                  |    2 +-
 dev-util/ati-stream-sdk/ati-stream-sdk-2.1.ebuild |    8 +++++---
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/dev-util/ati-stream-sdk/Manifest b/dev-util/ati-stream-sdk/Manifest
index bb7d9f3..cd6770d 100644
--- a/dev-util/ati-stream-sdk/Manifest
+++ b/dev-util/ati-stream-sdk/Manifest
@@ -5,6 +5,6 @@ DIST ati-stream-sdk-v2.1-lnx32.tgz 51590733 RMD160 fa3bf3cc628e1db2e38133ae9d6b8
 DIST ati-stream-sdk-v2.1-lnx64.tgz 82901409 RMD160 778f0d46e96f77b345a963b1720fce43c0eb96ef SHA1 dbf468d73b19462cf359a0b7248c20cc3bf4ae93 SHA256 46f6e47172a412d5ee3b3aea60fc869ebd26fbccf7fadc9ec5e4146c38f4a7ff
 DIST ati-stream-sdk-v2.3-lnx32.tgz 49912168 RMD160 07c045de3118531472672e9ef7b3763cb32f7d68 SHA1 972bdbe6942e52411a2f041720348e857f17c388 SHA256 07fd15a51a678c4378767f61466daf9da21d0bab6088a97a70136dd8c976aca6
 DIST ati-stream-sdk-v2.3-lnx64.tgz 78659015 RMD160 57af36f62e590ae54cb9d43b880735979b77466c SHA1 43c94e5126563fe3fa4cb92fb6dd20f12864a86d SHA256 f92537d1fc306af0bff1441af4669bf2fa668654b12d9fb53a3a872dc8826cad
-EBUILD ati-stream-sdk-2.1.ebuild 2423 RMD160 511fb3bdcb334b7569e9f66eb61fd1d482f85b23 SHA1 36f4f8fe721946cc698594dd8d779186f6e9a9ac SHA256 1d1af95ab9b6e9e23d998e43a69f289b09d94574ecd114fc1e5af530031acfaa
+EBUILD ati-stream-sdk-2.1.ebuild 2481 RMD160 65d85bb24c69626330d61dbdc2d76d59a80824d5 SHA1 a0480685805eeba1702bb0fa3d6e4f7c9b791c90 SHA256 6e929ddee6519e47ca186b266245a8b99d194350bdfef499f1b3ab9be17234f1
 EBUILD ati-stream-sdk-2.3-r1.ebuild 2481 RMD160 65d85bb24c69626330d61dbdc2d76d59a80824d5 SHA1 a0480685805eeba1702bb0fa3d6e4f7c9b791c90 SHA256 6e929ddee6519e47ca186b266245a8b99d194350bdfef499f1b3ab9be17234f1
 MISC metadata.xml 301 RMD160 1ef0179dbe53f24768e976ab60f6ae0e8ca9e672 SHA1 fba668cb8711ac2bcc6b7bfc113a1a513c69b0be SHA256 55f555e646e9d04c8975a736b9a5b3f1d8ea110446c18e988a3b884d0dca33b7

diff --git a/dev-util/ati-stream-sdk/ati-stream-sdk-2.1.ebuild b/dev-util/ati-stream-sdk/ati-stream-sdk-2.1.ebuild
index 82584b8..7a8c6ca 100644
--- a/dev-util/ati-stream-sdk/ati-stream-sdk-2.1.ebuild
+++ b/dev-util/ati-stream-sdk/ati-stream-sdk-2.1.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI="2"
-inherit eutils
+inherit eutils multilib
 
 MY_P="${PN}-v${PV}"
 
@@ -25,8 +25,6 @@ RDEPEND="media-libs/freeglut
 	!dev-util/nvidia-cuda-toolkit"
 
 QA_EXECSTACK="opt/${PN}/lib*/libatiocl??.so"
-QA_DT_HASH="/opt/ati-stream-sdk/lib/x86/libGLEW.so
-	/opt/ati-stream-sdk/lib/x86_64/libGLEW.so"
 
 S="${WORKDIR}/${MY_P}"
 
@@ -65,9 +63,13 @@ src_install(){
 			emake DESTDIR="${D}" ARCH="x86" install-lib \
 				|| die "Multilib install failed"
 		fi
+		insinto /etc/OpenCL/vendors
+		doins "${FILESDIR}"/atiocl64.icd || die
 	else
 		LIBDIR=x86
 		emake DESTDIR="${D}" ARCH="x86" install || die "Install failed";
+		insinto /etc/OpenCL/vendors
+		doins "${FILESDIR}"/atiocl32.icd || die
 	fi
 
 	cat > "${T}/99${PN}" << EOF



             reply	other threads:[~2011-02-24 19:28 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-24 19:28 Dane Smith [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-02-24 19:40 [gentoo-commits] dev/c1pher:master commit in: dev-util/ati-stream-sdk/ Dane Smith
2011-02-24 19:40 Dane Smith
2011-02-24 19:29 Dane Smith
2011-02-24 19:12 Dane Smith
2011-02-24 15:50 Dane Smith
2011-02-24 15:32 Dane Smith
2011-02-24 15:30 Dane Smith
2011-02-24 15:00 Dane Smith
2011-02-24 14:52 Dane Smith
2011-02-24 14:44 Dane Smith
2011-02-24 14:39 Dane Smith
2011-02-24 13:34 Dane Smith
2011-02-23 19:33 Dane Smith
2011-02-23 19:28 Dane Smith
2011-02-23 19:10 Dane Smith
2011-02-23 18:50 Dane Smith
2011-02-23 16:38 Dane Smith
2011-02-23 15:59 Dane Smith
2011-02-23 15:33 Dane Smith
2011-02-23 15:31 Dane Smith
2011-02-23 15:30 Dane Smith
2011-02-23 15:29 Dane Smith
2011-02-10 21:02 Dane Smith

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b381a159078099f24285e8ab6bfe2e7f0e97aef0.c1pher@gentoo \
    --to=c1pher@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox