* [gentoo-commits] dev/alexxy:master commit in: eclass/
@ 2011-10-26 19:02 Alexey Shvetsov
0 siblings, 0 replies; 8+ messages in thread
From: Alexey Shvetsov @ 2011-10-26 19:02 UTC (permalink / raw
To: gentoo-commits
commit: 8a547fbc39c6c16ff8b758e041e92cc8e66eb11a
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 26 19:00:30 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Oct 26 19:00:30 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=8a547fbc
update gosa-plugin eclass
---
eclass/gosa-plugin.eclass | 19 +++++++++++++++++--
1 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/eclass/gosa-plugin.eclass b/eclass/gosa-plugin.eclass
index 662397c..22bad61 100644
--- a/eclass/gosa-plugin.eclass
+++ b/eclass/gosa-plugin.eclass
@@ -37,6 +37,12 @@ GOSA_COMPONENT="${PN/gosa-plugin-}"
# @DESCRIPTION:
# Default src_install function for gosa-plugins
gosa-plugin_src_install() {
+
+ if [ -d etc ]; then
+ insinto /etc/gosa
+ doins -r etc/*
+ fi
+
insinto /usr/share/gosa/html/plugins/${GOSA_COMPONENT}/
doins -r html/*
@@ -44,12 +50,21 @@ gosa-plugin_src_install() {
doins -r locale/*
insinto /usr/share/gosa/plugins
- doins -r admin personal
+ doins -r admin
+ if [ -d personal ]; then
+ doins -r personal
+ fi
+ if [ -d addons ]; then
+ doins -r addons
+ fi
insinto /usr/share/gosa/doc/plugins/${GOSA_COMPONENT}/
doins -r help/*
- dodoc contrib/*
+ if [ -d contrib ]; then
+ dodoc contrib/*
+ insinto /usr/share/doc/${PF}
+ fi
}
# @FUNCTION: gosa-plugin_pkg_postinst()
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] dev/alexxy:master commit in: eclass/
@ 2011-10-26 19:04 Alexey Shvetsov
0 siblings, 0 replies; 8+ messages in thread
From: Alexey Shvetsov @ 2011-10-26 19:04 UTC (permalink / raw
To: gentoo-commits
commit: 26914df8cf3c10b6ac1dda4c9a5544dfd9381e28
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 26 19:02:36 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Oct 26 19:02:36 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=26914df8
one more update
---
eclass/gosa-plugin.eclass | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/eclass/gosa-plugin.eclass b/eclass/gosa-plugin.eclass
index 22bad61..b22547e 100644
--- a/eclass/gosa-plugin.eclass
+++ b/eclass/gosa-plugin.eclass
@@ -58,8 +58,10 @@ gosa-plugin_src_install() {
doins -r addons
fi
- insinto /usr/share/gosa/doc/plugins/${GOSA_COMPONENT}/
- doins -r help/*
+ if [ -d help ]; then
+ insinto /usr/share/gosa/doc/plugins/${GOSA_COMPONENT}/
+ doins -r help/*
+ fi
if [ -d contrib ]; then
dodoc contrib/*
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] dev/alexxy:master commit in: eclass/
@ 2011-10-26 19:08 Alexey Shvetsov
0 siblings, 0 replies; 8+ messages in thread
From: Alexey Shvetsov @ 2011-10-26 19:08 UTC (permalink / raw
To: gentoo-commits
commit: 01b7eaee8b8fb35d4fbbc7c6fb8b4a2ff725893c
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 26 19:06:54 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Oct 26 19:06:54 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=01b7eaee
One more update
---
eclass/gosa-plugin.eclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/eclass/gosa-plugin.eclass b/eclass/gosa-plugin.eclass
index b22547e..64645a3 100644
--- a/eclass/gosa-plugin.eclass
+++ b/eclass/gosa-plugin.eclass
@@ -64,8 +64,8 @@ gosa-plugin_src_install() {
fi
if [ -d contrib ]; then
- dodoc contrib/*
insinto /usr/share/doc/${PF}
+ doins -r contrib/*
fi
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] dev/alexxy:master commit in: eclass/
@ 2011-10-27 11:01 Alexey Shvetsov
0 siblings, 0 replies; 8+ messages in thread
From: Alexey Shvetsov @ 2011-10-27 11:01 UTC (permalink / raw
To: gentoo-commits
commit: 5c315d21664f7dd5763768316abae6b47fc747f2
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 10:58:45 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 10:58:45 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=5c315d21
[eclass] Update gosa-plugin eclass
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
---
eclass/gosa-plugin.eclass | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/eclass/gosa-plugin.eclass b/eclass/gosa-plugin.eclass
index 64645a3..3474813 100644
--- a/eclass/gosa-plugin.eclass
+++ b/eclass/gosa-plugin.eclass
@@ -43,8 +43,10 @@ gosa-plugin_src_install() {
doins -r etc/*
fi
- insinto /usr/share/gosa/html/plugins/${GOSA_COMPONENT}/
- doins -r html/*
+ if [ -d html ]; then
+ insinto /usr/share/gosa/html/plugins/${GOSA_COMPONENT}/
+ doins -r html/*
+ fi
insinto /usr/share/gosa/locale/plugins/${GOSA_COMPONENT}/
doins -r locale/*
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] dev/alexxy:master commit in: eclass/
@ 2011-10-28 10:55 Alexey Shvetsov
0 siblings, 0 replies; 8+ messages in thread
From: Alexey Shvetsov @ 2011-10-28 10:55 UTC (permalink / raw
To: gentoo-commits
commit: d38647fbc882ab252016ff475f5ed7fafa8f6ed0
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 28 10:55:23 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 10:55:23 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=d38647fb
Update eclass
---
eclass/gosa-plugin.eclass | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/eclass/gosa-plugin.eclass b/eclass/gosa-plugin.eclass
index 3474813..921383e 100644
--- a/eclass/gosa-plugin.eclass
+++ b/eclass/gosa-plugin.eclass
@@ -52,7 +52,9 @@ gosa-plugin_src_install() {
doins -r locale/*
insinto /usr/share/gosa/plugins
- doins -r admin
+ if [ -d admin ]; then
+ doins -r admin
+ f:
if [ -d personal ]; then
doins -r personal
fi
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] dev/alexxy:master commit in: eclass/
@ 2011-10-28 10:57 Alexey Shvetsov
0 siblings, 0 replies; 8+ messages in thread
From: Alexey Shvetsov @ 2011-10-28 10:57 UTC (permalink / raw
To: gentoo-commits
commit: cf43c1829564b266b731445402e4baedf617d133
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 28 10:57:13 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 10:57:13 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=cf43c182
Fix typo
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
---
eclass/gosa-plugin.eclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/eclass/gosa-plugin.eclass b/eclass/gosa-plugin.eclass
index 921383e..f9ff218 100644
--- a/eclass/gosa-plugin.eclass
+++ b/eclass/gosa-plugin.eclass
@@ -54,7 +54,7 @@ gosa-plugin_src_install() {
insinto /usr/share/gosa/plugins
if [ -d admin ]; then
doins -r admin
- f:
+ fi
if [ -d personal ]; then
doins -r personal
fi
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] dev/alexxy:master commit in: eclass/
@ 2011-11-09 20:14 Alexey Shvetsov
0 siblings, 0 replies; 8+ messages in thread
From: Alexey Shvetsov @ 2011-11-09 20:14 UTC (permalink / raw
To: gentoo-commits
commit: 86a3f642c4478d04f517fe95acd02a27c8d6343e
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 9 20:14:08 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Nov 9 20:14:08 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=86a3f642
Update eclass
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
---
eclass/gosa-plugin.eclass | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/eclass/gosa-plugin.eclass b/eclass/gosa-plugin.eclass
index e71c1cf..cb5407e 100644
--- a/eclass/gosa-plugin.eclass
+++ b/eclass/gosa-plugin.eclass
@@ -33,6 +33,8 @@ fi
GOSA_COMPONENT="${PN/gosa-plugin-}"
+S="${WORKDIR}/gosa/${GOSA_COMPONENT}"
+
# @FUNCTION: gosa-plugin_src_install
# @DESCRIPTION:
# Default src_install function for gosa-plugins
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] dev/alexxy:master commit in: eclass/
@ 2011-11-09 20:15 Alexey Shvetsov
0 siblings, 0 replies; 8+ messages in thread
From: Alexey Shvetsov @ 2011-11-09 20:15 UTC (permalink / raw
To: gentoo-commits
commit: 65bd3258f532cdd7acf4844432cc7459746c708b
Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 9 20:15:17 2011 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Nov 9 20:15:17 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=65bd3258
Once more =D
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
---
eclass/gosa-plugin.eclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/eclass/gosa-plugin.eclass b/eclass/gosa-plugin.eclass
index cb5407e..cf44901 100644
--- a/eclass/gosa-plugin.eclass
+++ b/eclass/gosa-plugin.eclass
@@ -33,7 +33,7 @@ fi
GOSA_COMPONENT="${PN/gosa-plugin-}"
-S="${WORKDIR}/gosa/${GOSA_COMPONENT}"
+S="${WORKDIR}/${GOSA_COMPONENT}"
# @FUNCTION: gosa-plugin_src_install
# @DESCRIPTION:
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-11-09 20:15 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-26 19:08 [gentoo-commits] dev/alexxy:master commit in: eclass/ Alexey Shvetsov
-- strict thread matches above, loose matches on Subject: below --
2011-11-09 20:15 Alexey Shvetsov
2011-11-09 20:14 Alexey Shvetsov
2011-10-28 10:57 Alexey Shvetsov
2011-10-28 10:55 Alexey Shvetsov
2011-10-27 11:01 Alexey Shvetsov
2011-10-26 19:04 Alexey Shvetsov
2011-10-26 19:02 Alexey Shvetsov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox