diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2010-08-04 11:24:18 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2010-08-04 11:24:18 +0530 |
commit | b753bf8d7cd5026e97c030f48cb66426e8fe497e (patch) | |
tree | 97fbc3aa243a020e5b7adce057349d1acb0c1ba7 | |
parent | dev-util/glib: Sync with stable glib (diff) | |
download | gnome-live-b753bf8d7cd5026e97c030f48cb66426e8fe497e.tar.gz gnome-live-b753bf8d7cd5026e97c030f48cb66426e8fe497e.tar.bz2 gnome-live-b753bf8d7cd5026e97c030f48cb66426e8fe497e.zip |
gnome2-live.eclass: Add EAPI=3, fix intltoolize call
* We already support EAPI=3
* Sometimes IT_PROG_INTLTOOL is called from inside a macro, so grep for INTLTOOL instead
-rw-r--r-- | eclass/gnome2-live.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnome2-live.eclass b/eclass/gnome2-live.eclass index 311b7f1..16ab4fe 100644 --- a/eclass/gnome2-live.eclass +++ b/eclass/gnome2-live.eclass @@ -17,7 +17,7 @@ inherit autotools gnome2 gnome2-utils libtool git # Stolen from git.eclass EXPORTED_FUNCTIONS="src_unpack pkg_postinst" case "${EAPI:-0}" in - 2) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;; + 2|3) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;; 0|1) ;; *) die "Unknown EAPI, Bug eclass maintainers." ;; esac @@ -68,7 +68,7 @@ gnome2-live_src_prepare() { gnome-doc-common gnome-doc-prepare --automake fi - if grep -qe "IT_PROG_INTLTOOL" configure.*; then + if grep -qe "INTLTOOL" configure.*; then intltoolize --force fi if test -e m4; then |