diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-08-04 09:38:10 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-08-04 09:38:10 +0000 |
commit | 7221b01768b95410337fe6acf383a1fcc9206413 (patch) | |
tree | 46777e5602e9325f293b4fb510eae570f14674b4 /eclass | |
parent | added new package, squidsites (diff) | |
download | gentoo-2-7221b01768b95410337fe6acf383a1fcc9206413.tar.gz gentoo-2-7221b01768b95410337fe6acf383a1fcc9206413.tar.bz2 gentoo-2-7221b01768b95410337fe6acf383a1fcc9206413.zip |
add support for installing module/doc/app also when module/app is requested
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde-source.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/kde-source.eclass b/eclass/kde-source.eclass index 9aedcf81fab8..d669b164be04 100644 --- a/eclass/kde-source.eclass +++ b/eclass/kde-source.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-source.eclass,v 1.4 2002/08/01 22:14:10 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-source.eclass,v 1.5 2002/08/04 09:38:10 danarmak Exp $ # This is for kde-base cvs ebuilds. Read comments about settings. # It uses $S and sets $SRC_URI, so inherit it as late as possible (certainly after any other eclasses). @@ -67,8 +67,13 @@ kde-source_src_unpack() { # of the module (non-recursively) and make it build only the subdirectory # we need if [ -n "$ECVS_SUBDIR" -a -n "$ECVS_SERVER" ]; then + ECVS_SUBDIR= ECVS_LOCAL=yes cvs_src_unpack + # we need the module/doc/name directory too + ECVS_SUBDIR=doc/$ECVS_SUBDIR cvs_src_unpack + ECVS_SUBDIR=doc ECVS_LOCAL=yes cvs_src_unpack + fi # typically for kde cvs, the admin subdir lives in the kde-common module |