diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /intltool | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'intltool')
-rw-r--r-- | intltool/intltool-native_0.30.oe | 8 | ||||
-rw-r--r-- | intltool/intltool_0.30.oe | 13 |
2 files changed, 21 insertions, 0 deletions
diff --git a/intltool/intltool-native_0.30.oe b/intltool/intltool-native_0.30.oe index e69de29bb2..31df211622 100644 --- a/intltool/intltool-native_0.30.oe +++ b/intltool/intltool-native_0.30.oe @@ -0,0 +1,8 @@ +include intltool_${PV}.oe +inherit native +DEPENDS= + +do_stage () { + install -d ${STAGING_DIR}/share/aclocal + install -m 0644 intltool.m4 xml-i18n-tools.m4 ${STAGING_DIR}/share/aclocal/ +} diff --git a/intltool/intltool_0.30.oe b/intltool/intltool_0.30.oe index e69de29bb2..223c22bf46 100644 --- a/intltool/intltool_0.30.oe +++ b/intltool/intltool_0.30.oe @@ -0,0 +1,13 @@ +DESCRIPTION = "Utility scripts for internationalizing XML" +MAINTAINER = "Phil Blundell <pb@handhelds.org>" +DEPENDS = "virtual/libc" +RDEPENDS = "libc6" + +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/intltool/${PV}/intltool-${PV}.tar.bz2" +S = "${WORKDIR}/intltool-${PV}" + +inherit autotools libtool pkgconfig + +do_stage() { + install -m 0644 intltool.m4 ${STAGING_DIR}/share/aclocal/ +} |