public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sys-fs/zfs/, sys-devel/spl/
@ 2011-04-27 17:45 Alexey Shvetsov
  0 siblings, 0 replies; 3+ messages in thread
From: Alexey Shvetsov @ 2011-04-27 17:45 UTC (permalink / raw
  To: gentoo-commits

commit:     be7dd37014972979b3606275279b85aa61a17562
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 27 17:44:44 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Apr 27 17:44:44 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=be7dd370

Make zfs install to / not to /usr

---
 sys-devel/spl/spl-0.6.0_rc3.ebuild |    6 +++++-
 sys-devel/spl/spl-9999.ebuild      |    6 +++++-
 sys-fs/zfs/zfs-0.6.0_rc3.ebuild    |   10 +++++++---
 sys-fs/zfs/zfs-9999.ebuild         |   10 +++++++---
 4 files changed, 24 insertions(+), 8 deletions(-)

diff --git a/sys-devel/spl/spl-0.6.0_rc3.ebuild b/sys-devel/spl/spl-0.6.0_rc3.ebuild
index f3f7751..40b2501 100644
--- a/sys-devel/spl/spl-0.6.0_rc3.ebuild
+++ b/sys-devel/spl/spl-0.6.0_rc3.ebuild
@@ -31,7 +31,11 @@ src_prepare() {
 
 src_configure() {
 	set_arch_to_kernel
-	econf --with-config=all --with-linux="${KERNEL_DIR}" --with-linux-obj="${KERNEL_DIR}"
+	econf \
+		--prefix="${EPREFIX}" \
+		--with-config=all \
+		--with-linux="${KERNEL_DIR}" \
+		--with-linux-obj="${KERNEL_DIR}"
 }
 
 src_install() {

diff --git a/sys-devel/spl/spl-9999.ebuild b/sys-devel/spl/spl-9999.ebuild
index 8548476..5aed7dd 100644
--- a/sys-devel/spl/spl-9999.ebuild
+++ b/sys-devel/spl/spl-9999.ebuild
@@ -30,7 +30,11 @@ src_prepare() {
 
 src_configure() {
 	set_arch_to_kernel
-	econf --with-config=all --with-linux="${KERNEL_DIR}" --with-linux-obj="${KERNEL_DIR}"
+	econf \
+		--prefix="${EPREFIX}" \
+		--with-config=all \
+		--with-linux="${KERNEL_DIR}" \
+		--with-linux-obj="${KERNEL_DIR}"
 }
 
 src_install() {

diff --git a/sys-fs/zfs/zfs-0.6.0_rc3.ebuild b/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
index ab60f3a..c72cbb2 100644
--- a/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
+++ b/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
@@ -34,9 +34,13 @@ src_prepare() {
 
 src_configure() {
 	set_arch_to_kernel
-	econf --with-config=all \
-			--with-linux="${KERNEL_DIR}" --with-linux-obj="${KERNEL_DIR}" \
-			--with-spl=/usr/include/spl --with-spl-obj=/usr/include/spl/module
+	econf \
+		--with-prefix="${EPREFIX}" \
+		--with-config=all \
+		--with-linux="${KERNEL_DIR}" \
+		--with-linux-obj="${KERNEL_DIR}" \
+		--with-spl=/usr/include/spl \
+		--with-spl-obj=/usr/include/spl/module
 }
 
 src_compile() {

diff --git a/sys-fs/zfs/zfs-9999.ebuild b/sys-fs/zfs/zfs-9999.ebuild
index 3f8e326..8394619 100644
--- a/sys-fs/zfs/zfs-9999.ebuild
+++ b/sys-fs/zfs/zfs-9999.ebuild
@@ -35,9 +35,13 @@ src_prepare() {
 
 src_configure() {
 	set_arch_to_kernel
-	econf --with-config=all \
-			--with-linux="${KERNEL_DIR}" --with-linux-obj="${KERNEL_DIR}" \
-			--with-spl=/usr/include/spl --with-spl-obj=/usr/include/spl/module
+	econf \
+		--with-prefix="${EPREFIX}" \
+		--with-config=all \
+		--with-linux="${KERNEL_DIR}" \
+		--with-linux-obj="${KERNEL_DIR}" \
+		--with-spl=/usr/include/spl \
+		--with-spl-obj=/usr/include/spl/module
 }
 
 src_compile() {



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-fs/zfs/, sys-devel/spl/
@ 2011-04-28 22:53 Alexey Shvetsov
  0 siblings, 0 replies; 3+ messages in thread
From: Alexey Shvetsov @ 2011-04-28 22:53 UTC (permalink / raw
  To: gentoo-commits

commit:     3b30e9bb1be46f28c17267bfea2dba5e6f8b00bc
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 28 22:52:01 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Thu Apr 28 22:52:01 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3b30e9bb

Fix include path  for zfs and spl

---
 sys-devel/spl/spl-0.6.0_rc3.ebuild |    1 +
 sys-devel/spl/spl-9999.ebuild      |    1 +
 sys-fs/zfs/zfs-0.6.0_rc3.ebuild    |    1 +
 sys-fs/zfs/zfs-9999.ebuild         |    1 +
 4 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/sys-devel/spl/spl-0.6.0_rc3.ebuild b/sys-devel/spl/spl-0.6.0_rc3.ebuild
index 40b2501..a59d99e 100644
--- a/sys-devel/spl/spl-0.6.0_rc3.ebuild
+++ b/sys-devel/spl/spl-0.6.0_rc3.ebuild
@@ -33,6 +33,7 @@ src_configure() {
 	set_arch_to_kernel
 	econf \
 		--prefix="${EPREFIX}" \
+		--includedir="${EPREFIX}"/usr/include \
 		--with-config=all \
 		--with-linux="${KERNEL_DIR}" \
 		--with-linux-obj="${KERNEL_DIR}"

diff --git a/sys-devel/spl/spl-9999.ebuild b/sys-devel/spl/spl-9999.ebuild
index 5aed7dd..60911da 100644
--- a/sys-devel/spl/spl-9999.ebuild
+++ b/sys-devel/spl/spl-9999.ebuild
@@ -32,6 +32,7 @@ src_configure() {
 	set_arch_to_kernel
 	econf \
 		--prefix="${EPREFIX}" \
+		--includedir="${EPREFIX}"/usr/include \
 		--with-config=all \
 		--with-linux="${KERNEL_DIR}" \
 		--with-linux-obj="${KERNEL_DIR}"

diff --git a/sys-fs/zfs/zfs-0.6.0_rc3.ebuild b/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
index c72cbb2..86d601d 100644
--- a/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
+++ b/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
@@ -36,6 +36,7 @@ src_configure() {
 	set_arch_to_kernel
 	econf \
 		--with-prefix="${EPREFIX}" \
+		--includedir="${EPREFIX}"/usr/include \
 		--with-config=all \
 		--with-linux="${KERNEL_DIR}" \
 		--with-linux-obj="${KERNEL_DIR}" \

diff --git a/sys-fs/zfs/zfs-9999.ebuild b/sys-fs/zfs/zfs-9999.ebuild
index 8394619..4568197 100644
--- a/sys-fs/zfs/zfs-9999.ebuild
+++ b/sys-fs/zfs/zfs-9999.ebuild
@@ -37,6 +37,7 @@ src_configure() {
 	set_arch_to_kernel
 	econf \
 		--with-prefix="${EPREFIX}" \
+		--includedir="${EPREFIX}"/usr/include \
 		--with-config=all \
 		--with-linux="${KERNEL_DIR}" \
 		--with-linux-obj="${KERNEL_DIR}" \



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-fs/zfs/, sys-devel/spl/
@ 2011-04-30 22:29 Alexey Shvetsov
  0 siblings, 0 replies; 3+ messages in thread
From: Alexey Shvetsov @ 2011-04-30 22:29 UTC (permalink / raw
  To: gentoo-commits

commit:     5db0d10021a1976147040878075c70ebd0c5157b
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 30 22:28:53 2011 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Sat Apr 30 22:28:53 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5db0d100

more zfs stuff

---
 sys-devel/spl/spl-9999.ebuild   |    2 ++
 sys-fs/zfs/zfs-0.6.0_rc3.ebuild |    2 +-
 sys-fs/zfs/zfs-9999.ebuild      |    2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/sys-devel/spl/spl-9999.ebuild b/sys-devel/spl/spl-9999.ebuild
index 60911da..c687962 100644
--- a/sys-devel/spl/spl-9999.ebuild
+++ b/sys-devel/spl/spl-9999.ebuild
@@ -40,4 +40,6 @@ src_configure() {
 
 src_install() {
 	emake DESTDIR="${D}" install || die 'emake install failed'
+	dosym /usr/include/spl/spl_config.h /usr/include/spl/module/spl_config.h \
+		|| die
 }

diff --git a/sys-fs/zfs/zfs-0.6.0_rc3.ebuild b/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
index 3734c7b..1f1078d 100644
--- a/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
+++ b/sys-fs/zfs/zfs-0.6.0_rc3.ebuild
@@ -35,7 +35,7 @@ src_prepare() {
 src_configure() {
 	set_arch_to_kernel
 	econf \
-		--with-prefix="${EPREFIX}" \
+		--prefix="${EPREFIX}" \
 		--includedir="${EPREFIX}"/usr/include \
 		--with-config=all \
 		--with-linux="${KERNEL_DIR}" \

diff --git a/sys-fs/zfs/zfs-9999.ebuild b/sys-fs/zfs/zfs-9999.ebuild
index 0341586..d7ee31a 100644
--- a/sys-fs/zfs/zfs-9999.ebuild
+++ b/sys-fs/zfs/zfs-9999.ebuild
@@ -36,7 +36,7 @@ src_prepare() {
 src_configure() {
 	set_arch_to_kernel
 	econf \
-		--with-prefix="${EPREFIX}" \
+		--prefix="${EPREFIX}" \
 		--includedir="${EPREFIX}"/usr/include \
 		--with-config=all \
 		--with-linux="${KERNEL_DIR}" \



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-04-30 22:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-28 22:53 [gentoo-commits] proj/sci:master commit in: sys-fs/zfs/, sys-devel/spl/ Alexey Shvetsov
  -- strict thread matches above, loose matches on Subject: below --
2011-04-30 22:29 Alexey Shvetsov
2011-04-27 17:45 Alexey Shvetsov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox