2003-01-09 03:34:10 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# automake
|
|
|
|
#
|
|
|
|
#############################################################
|
2010-11-04 03:50:26 +01:00
|
|
|
AUTOMAKE_VERSION = 1.11.1
|
2009-03-23 22:46:37 +01:00
|
|
|
AUTOMAKE_SOURCE = automake-$(AUTOMAKE_VERSION).tar.bz2
|
|
|
|
AUTOMAKE_SITE = $(BR2_GNU_MIRROR)/automake
|
2007-06-28 15:51:07 +02:00
|
|
|
|
2010-02-20 17:09:05 +01:00
|
|
|
AUTOMAKE_DEPENDENCIES = host-autoconf autoconf microperl
|
2003-01-09 03:34:10 +01:00
|
|
|
|
2009-11-01 23:39:02 +01:00
|
|
|
HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
|
2003-01-09 03:34:10 +01:00
|
|
|
|
gtk-doc: add gtk-doc.m4 to satisfy aclocal
When packages using gtk-doc are autoreconfigured, aclocal complains
because it cannot find the macros defined in gtk-doc.m4. We could
compile the gtk-doc package for the host, but it depends on
gnome-doc-utils, which depends on libxml2, libxslt, and other packages
as well.
Since we don't care about the documentation, all is needed is in fact
the gtk-doc.m4, so that the configure script can be generated, and we
can use the --disable-gtk-doc to not generate the documentation.
To solve this, we include a gtk-doc.m4 file in package/automake/, and
it gets installed in $(STAGING_DIR)/usr/share/aclocal/ during the
installation of the host automake (used for autoreconfiguration of
packages).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-08-09 00:46:46 +02:00
|
|
|
define GTK_DOC_M4_INSTALL
|
2010-12-26 17:16:36 +01:00
|
|
|
$(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 $(HOST_DIR)/usr/share/aclocal/gtk-doc.m4
|
gtk-doc: add gtk-doc.m4 to satisfy aclocal
When packages using gtk-doc are autoreconfigured, aclocal complains
because it cannot find the macros defined in gtk-doc.m4. We could
compile the gtk-doc package for the host, but it depends on
gnome-doc-utils, which depends on libxml2, libxslt, and other packages
as well.
Since we don't care about the documentation, all is needed is in fact
the gtk-doc.m4, so that the configure script can be generated, and we
can use the --disable-gtk-doc to not generate the documentation.
To solve this, we include a gtk-doc.m4 file in package/automake/, and
it gets installed in $(STAGING_DIR)/usr/share/aclocal/ during the
installation of the host automake (used for autoreconfiguration of
packages).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-08-09 00:46:46 +02:00
|
|
|
endef
|
|
|
|
|
2010-12-29 09:14:15 +01:00
|
|
|
# ensure staging aclocal dir exists
|
|
|
|
define HOST_AUTOMAKE_MAKE_ACLOCAL
|
|
|
|
mkdir -p $(ACLOCAL_DIR)
|
|
|
|
endef
|
|
|
|
|
gtk-doc: add gtk-doc.m4 to satisfy aclocal
When packages using gtk-doc are autoreconfigured, aclocal complains
because it cannot find the macros defined in gtk-doc.m4. We could
compile the gtk-doc package for the host, but it depends on
gnome-doc-utils, which depends on libxml2, libxslt, and other packages
as well.
Since we don't care about the documentation, all is needed is in fact
the gtk-doc.m4, so that the configure script can be generated, and we
can use the --disable-gtk-doc to not generate the documentation.
To solve this, we include a gtk-doc.m4 file in package/automake/, and
it gets installed in $(STAGING_DIR)/usr/share/aclocal/ during the
installation of the host automake (used for autoreconfiguration of
packages).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-08-09 00:46:46 +02:00
|
|
|
HOST_AUTOMAKE_POST_INSTALL_HOOKS += GTK_DOC_M4_INSTALL
|
2010-12-29 09:14:15 +01:00
|
|
|
HOST_AUTOMAKE_POST_INSTALL_HOOKS += HOST_AUTOMAKE_MAKE_ACLOCAL
|
gtk-doc: add gtk-doc.m4 to satisfy aclocal
When packages using gtk-doc are autoreconfigured, aclocal complains
because it cannot find the macros defined in gtk-doc.m4. We could
compile the gtk-doc package for the host, but it depends on
gnome-doc-utils, which depends on libxml2, libxslt, and other packages
as well.
Since we don't care about the documentation, all is needed is in fact
the gtk-doc.m4, so that the configure script can be generated, and we
can use the --disable-gtk-doc to not generate the documentation.
To solve this, we include a gtk-doc.m4 file in package/automake/, and
it gets installed in $(STAGING_DIR)/usr/share/aclocal/ during the
installation of the host automake (used for autoreconfiguration of
packages).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-08-09 00:46:46 +02:00
|
|
|
|
2011-09-29 21:57:43 +02:00
|
|
|
$(eval $(call AUTOTARGETS))
|
|
|
|
$(eval $(call AUTOTARGETS,host))
|
2003-01-09 03:34:10 +01:00
|
|
|
|
2009-03-23 22:46:37 +01:00
|
|
|
# variables used by other packages
|
2010-04-30 02:24:12 +02:00
|
|
|
AUTOMAKE = $(HOST_DIR)/usr/bin/automake
|
2009-03-29 21:10:26 +02:00
|
|
|
ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
|
2010-12-26 17:16:35 +01:00
|
|
|
ACLOCAL_HOST_DIR = $(HOST_DIR)/usr/share/aclocal
|
2009-03-23 22:46:37 +01:00
|
|
|
ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR)
|