diff options
author | adam <adam@pkgsrc.org> | 2011-03-29 10:18:18 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-03-29 10:18:18 +0000 |
commit | 71239daa86e9ef40857b01be82fc20400c704838 (patch) | |
tree | 01f7a1ca70b19b76369ac60a049b1d63c229e1fe /sysutils | |
parent | 1e788c906fb44b730313fab84b0cf7f712426fdd (diff) | |
download | pkgsrc-71239daa86e9ef40857b01be82fc20400c704838.tar.gz |
Don't call autogen.sh, but do autoconf stuff in our Makefile: autogen.sh calls configure, but does not pass CFLAGS/LDFLAGS, so building may fail, e.g. on Mac OS X.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/eggdbus/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/sysutils/eggdbus/Makefile b/sysutils/eggdbus/Makefile index 22ae5decbfa..4ada51edf4c 100644 --- a/sysutils/eggdbus/Makefile +++ b/sysutils/eggdbus/Makefile @@ -1,5 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2010/07/27 14:16:41 joerg Exp $ -# +# $NetBSD: Makefile,v 1.3 2011/03/29 10:18:18 adam Exp $ DISTNAME= eggdbus-0.6 CATEGORIES= sysutils @@ -14,17 +13,19 @@ LICENSE= gnu-gpl-v2 PKG_DESTDIR_SUPPORT= user-destdir MAKE_JOBS_SAFE= no -USE_TOOLS+= pkg-config autoconf automake gmake -GNU_CONFIGURE= yes -USE_LIBTOOL= yes -TEST_TARGET= check +USE_LIBTOOL= yes +USE_TOOLS+= aclocal autoconf autoheader automake gmake pkg-config +GNU_CONFIGURE= yes +TEST_TARGET= check PKGCONFIG_OVERRIDE+= eggdbus-1.pc.in pre-configure: - cd ${WRKSRC} && ./autogen.sh + set -e; cd ${WRKSRC}; gtkdocize --flavour no-tmpl; \ + libtoolize -c -f; \ + aclocal; autoheader; automake -a --foreign -i; autoconf -.include "../../textproc/gtk-doc/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" .include "../../sysutils/dbus/buildlink3.mk" .include "../../sysutils/dbus-glib/buildlink3.mk" +.include "../../textproc/gtk-doc/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |