diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-03-20 15:10:18 +0000 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-03-20 15:10:18 +0000 |
commit | decaa9b6b10f9dff1e5912bebcc74951285b864d (patch) | |
tree | ef388d03e01595f1ffbedd2ce122d0c54921a015 | |
parent | dec4cf414f46970af4c339ca807046bc06046a08 (diff) | |
download | FreeBSD-ports-decaa9b6b10f9dff1e5912bebcc74951285b864d.zip FreeBSD-ports-decaa9b6b10f9dff1e5912bebcc74951285b864d.tar.gz |
Support staging
-rw-r--r-- | misc/gkrellmfmonitor/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/misc/gkrellmfmonitor/Makefile b/misc/gkrellmfmonitor/Makefile index 124cbed..1b292d8 100644 --- a/misc/gkrellmfmonitor/Makefile +++ b/misc/gkrellmfmonitor/Makefile @@ -16,13 +16,16 @@ BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm/gkrellm.h:${PORTSDIR}/sysutils/gkrel RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm PLIST_FILES= libexec/gkrellm/plugins/fmonitor.so +PLIST_DIRSTRY= libexec/gkrellm/plugins libexec/gkrellm + USE_GNOME= imlib ALL_TARGET= fmonitor.so CFLAGS+= -fPIC `${GTK_CONFIG} --cflags` `imlib-config --cflags-gdk` MAKE_ARGS= CC="${CC} ${CFLAGS}" GTK_LIB="`${GTK_CONFIG} --libs`" -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/fmonitor.so ${PREFIX}/libexec/gkrellm/plugins + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/gkrellm/plugins + ${INSTALL_LIB} ${WRKSRC}/fmonitor.so \ + ${STAGEDIR}${PREFIX}/libexec/gkrellm/plugins .include <bsd.port.mk> |