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 14:52:05 +0000 (UTC) [thread overview]
Message-ID: <bd525c9743f78f965dac0258e2ea4549fb9c6f43.c1pher@gentoo> (raw)
commit: bd525c9743f78f965dac0258e2ea4549fb9c6f43
Author: Dane Smith <c1pher <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 24 14:47:20 2011 +0000
Commit: Dane Smith <c1pher <AT> gentoo <DOT> org>
CommitDate: Thu Feb 24 14:47:20 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/c1pher.git;a=commit;h=bd525c97
Remove multilib.. for real this time.
---
dev-util/ati-stream-sdk/Manifest | 2 +-
.../ati-stream-sdk/ati-stream-sdk-2.3-r1.ebuild | 23 +++++++++----------
2 files changed, 12 insertions(+), 13 deletions(-)
diff --git a/dev-util/ati-stream-sdk/Manifest b/dev-util/ati-stream-sdk/Manifest
index 0729ab3..d9ad4cc 100644
--- a/dev-util/ati-stream-sdk/Manifest
+++ b/dev-util/ati-stream-sdk/Manifest
@@ -1,5 +1,5 @@
AUX Makefile 2303 RMD160 60c8f2756550189262ee24714124a40f6369be8e SHA1 c4ae39fc81dfde80b62b876efe6b3540ff7422d9 SHA256 cdf4365663d68c898646c5544e280372214fcabf91115254342af432c3aac857
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.3-r1.ebuild 2187 RMD160 073a7ef915ada7507e1feade4ffecf6ac263442a SHA1 d8f0768e6106cc2fd16583b2acd6bab2b12775db SHA256 cf45f87abe5df707d074927f4fb94639900ca66c43dd2303b8ebb8737bb06c86
+EBUILD ati-stream-sdk-2.3-r1.ebuild 2264 RMD160 c800d9b220a61e3aa764e3227a71ec4549947a66 SHA1 6db819c535ae2e6f706fa57b8853908d8819faef SHA256 3c503ed93b71e50d681251777669849acfbfd200d0e7d9670006edcd41aabd70
MISC metadata.xml 301 RMD160 1ef0179dbe53f24768e976ab60f6ae0e8ca9e672 SHA1 fba668cb8711ac2bcc6b7bfc113a1a513c69b0be SHA256 55f555e646e9d04c8975a736b9a5b3f1d8ea110446c18e988a3b884d0dca33b7
diff --git a/dev-util/ati-stream-sdk/ati-stream-sdk-2.3-r1.ebuild b/dev-util/ati-stream-sdk/ati-stream-sdk-2.3-r1.ebuild
index 5ae86fd..c322054 100644
--- a/dev-util/ati-stream-sdk/ati-stream-sdk-2.3-r1.ebuild
+++ b/dev-util/ati-stream-sdk/ati-stream-sdk-2.3-r1.ebuild
@@ -43,13 +43,11 @@ src_prepare(){
if use examples; then
sed -i -e 's/samples/examples/g' make/openclsdkrules.mk make/openclsdkdefs.mk \
|| die "Sed failed"
- sed -i \
- -e "/OPENCL_LIBDIRS/{s|lib/\$(CPU_ARCH)|$(get_libdir)|}" \
- -e "s|\$(DEPTH)/lib/\$(CPU_ARCH)|\$(DEPTH)/$(get_libdir)|" \
- -e "/CAL_LIBDIRS/{s|lib|$(get_libdir)|}" \
- make/openclsdkdefs.mk || die "Sed failed"
-
-
+# sed -i \
+# -e "/OPENCL_LIBDIRS/{s|lib/\$(CPU_ARCH)|$(get_libdir)|}" \
+# -e "s|\$(DEPTH)/lib/\$(CPU_ARCH)|\$(DEPTH)/$(get_libdir)|" \
+# -e "/CAL_LIBDIRS/{s|lib|$(get_libdir)|}" \
+# make/openclsdkdefs.mk || die "Sed failed"
fi
}
@@ -61,11 +59,12 @@ src_install() {
rm include/GL/{glext.h,glut.h} || die
if use amd64; then
- emake DESTDIR="${D}" ARCH="amd64" LIBDIR='$(PREFIX)/'$(get_libdir) install || die "Install failed";
- if use multilib; then
- emake DESTDIR="${D}" ARCH="x86" LIBDIR='$(PREFIX)/lib32' \
- install-lib || die "Install multilib failed"
- fi
+# emake DESTDIR="${D}" ARCH="amd64" LIBDIR='$(PREFIX)/'$(get_libdir) install || die "Install failed";
+ emake DESTDIR="${D}" ARCH="amd64" install || die "Install failed";
+# if use multilib; then
+# emake DESTDIR="${D}" ARCH="x86" LIBDIR='$(PREFIX)/lib32' \
+# install-lib || die "Install multilib failed"
+# fi
else
emake DESTDIR="${D}" ARCH="x86" LIBDIR='$(PREFIX)/'$(get_libdir) install || die "Install failed";
fi
next reply other threads:[~2011-02-24 14:52 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-24 14:52 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:28 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: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=bd525c9743f78f965dac0258e2ea4549fb9c6f43.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