diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2016-04-19 14:20:01 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2016-04-19 14:20:01 +0000 |
commit | 4e23c21fc178f53926a6fdce031c92cf22ece907 (patch) | |
tree | 14fe99943d56267ca815906c549d8a671245db05 /devel/dbus-tcl/Makefile | |
parent | c1364a4b63589dc9afcb8aed2258c90b1fe957d6 (diff) | |
download | ports-4e23c21fc178f53926a6fdce031c92cf22ece907.tar.gz ports-4e23c21fc178f53926a6fdce031c92cf22ece907.zip |
Notes
Diffstat (limited to 'devel/dbus-tcl/Makefile')
-rw-r--r-- | devel/dbus-tcl/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/devel/dbus-tcl/Makefile b/devel/dbus-tcl/Makefile index 5c5505fdcc25..df51d4108b77 100644 --- a/devel/dbus-tcl/Makefile +++ b/devel/dbus-tcl/Makefile @@ -21,10 +21,7 @@ PORTDOCS= * TEST_TARGET= do-test -USES= pkgconfig tcl:85+ -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} \ - --exec-prefix=${PREFIX} +USES= pkgconfig tcl:85+,tea PLIST_FILES= lib/dbus/libdbus21.so.1 \ lib/dbus/pkgIndex.tcl \ @@ -36,8 +33,8 @@ post-patch: do-test: DBUS=$$(${LOCALBASE}/bin/dbus-daemon --session --print-address --fork --print-pid); \ - DBUS_ADDR=$$(echo $$DBUS | awk '{print $$1}'); \ - DBUS_PID=$$(echo $$DBUS | awk '{print $$2}'); \ + DBUS_ADDR=$$(echo $$DBUS | ${AWK} '{print $$1}'); \ + DBUS_PID=$$(echo $$DBUS | ${AWK} '{print $$2}'); \ DBUS_ENV=DBUS_SESSION_BUS_ADDRESS=$$DBUS_ADDR; \ ${SETENV} ${MAKE_ENV} $$DBUS_ENV ${MAKE} -C ${WRKSRC} test; \ kill $$DBUS_PID |