diff options
author | 2009-11-02 08:24:15 +0000 | |
---|---|---|
committer | 2009-11-02 08:24:15 +0000 | |
commit | e058349af54dfe36db664cbeb9aaa538da2725d4 (patch) | |
tree | 2ce6a200f8cad59f1710dc130a5a3c6042f60223 /eclass/clutter.eclass | |
parent | bump clutter and libchamplain to latest releases (diff) | |
download | suka-e058349af54dfe36db664cbeb9aaa538da2725d4.tar.gz suka-e058349af54dfe36db664cbeb9aaa538da2725d4.tar.bz2 suka-e058349af54dfe36db664cbeb9aaa538da2725d4.zip |
Sync clutter stuff to gnome overlay, bump libchamplain
svn path=/; revision=179
Diffstat (limited to 'eclass/clutter.eclass')
-rw-r--r-- | eclass/clutter.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/clutter.eclass b/eclass/clutter.eclass index cab5503..e5dce3b 100644 --- a/eclass/clutter.eclass +++ b/eclass/clutter.eclass @@ -21,7 +21,7 @@ LICENSE="LGPL-2" DEPEND="dev-util/pkgconfig" -DOCS="AUTHORS ChangeLog NEWS README TODO" +DOCS="${DOCS:-AUTHORS ChangeLog NEWS README TODO}" clutter_src_install() { emake DESTDIR="${D}" install || die "emake install failed" @@ -31,7 +31,8 @@ clutter_src_install() { if hasq examples ${IUSE} && use examples; then insinto /usr/share/doc/${PF}/examples - for example in ${EXAMPLES}; do + # We use eval to be able to use globs + for example in $(eval echo ${EXAMPLES}); do # If directory if [[ ${example: -1} = "/" ]]; then doins -r ${example} |