diff options
author | hubertf <hubertf> | 2001-03-27 03:19:43 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-03-27 03:19:43 +0000 |
commit | f63de72ad91a5e675f6b4da410b4fc8333fc0d81 (patch) | |
tree | 387535a43617bd882ee1e20ce4779c6544f8925b /net/ORBit | |
parent | 8f8631769bc10d6d2843a57e8f6ca7d8c8fa63da (diff) | |
download | pkgsrc-f63de72ad91a5e675f6b4da410b4fc8333fc0d81.tar.gz |
Change BUILD_DEPENDS semantics:
first component is now a package name+version/pattern, no more
executable/patchname/whatnot.
While there, introduce BUILD_USES_MSGFMT as shorthand to pull in
devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current).
Patch by Alistair Crooks <agc@netbsd.org>
Diffstat (limited to 'net/ORBit')
-rw-r--r-- | net/ORBit/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/ORBit/Makefile b/net/ORBit/Makefile index e61ea2b4f1b..354a179e66b 100644 --- a/net/ORBit/Makefile +++ b/net/ORBit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2001/03/10 23:36:22 tron Exp $ +# $NetBSD: Makefile,v 1.51 2001/03/27 03:20:09 hubertf Exp $ # DISTNAME= ORBit-0.5.6 @@ -11,9 +11,8 @@ COMMENT= high-performance CORBA ORB with support for the C language DEPENDS+= glib>=1.2.7:../../devel/glib DEPENDS+= gindent-*:../../devel/gindent -BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf -BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake -BUILD_DEPENDS+= ${LOCALBASE}/share/aclocal/gettext.m4:../../devel/gettext +BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf +BUILD_DEPENDS+= automake-1.4:../../devel/automake USE_LIBINTL= YES USE_GMAKE= YES @@ -32,6 +31,10 @@ INFO_FILES= libIDL.info .include "../../mk/bsd.prefs.mk" +.if !exists(${LOCALBASE}/share/aclocal/gettext.m4) +BUILD_DEPENDS+= gettext-0.10.35nb1:../../devel/gettext +.endif + .if (${OPSYS} == SunOS) DEPENDS+= tcp_wrappers>=7.6.1nb1:../../security/tcp_wrappers .endif |