diff options
author | bapt <bapt@FreeBSD.org> | 2014-04-22 16:33:19 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-04-22 16:33:19 +0800 |
commit | b552aa0b5ebaef570db03345df2f9f9661debbc8 (patch) | |
tree | 23d1c0ec0eadd014094480e88918cc2bdb7a7aab /x11-wm/compiz-fusion | |
parent | 17d6ed84e1f192044a0446d3b8bd5c7b195c6e9d (diff) | |
download | freebsd-ports-gnome-b552aa0b5ebaef570db03345df2f9f9661debbc8.tar.gz freebsd-ports-gnome-b552aa0b5ebaef570db03345df2f9f9661debbc8.tar.zst freebsd-ports-gnome-b552aa0b5ebaef570db03345df2f9f9661debbc8.zip |
Support stage
Use options helpers
Diffstat (limited to 'x11-wm/compiz-fusion')
-rw-r--r-- | x11-wm/compiz-fusion/Makefile | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/x11-wm/compiz-fusion/Makefile b/x11-wm/compiz-fusion/Makefile index eb38e25baf8d..3d7f836301c3 100644 --- a/x11-wm/compiz-fusion/Makefile +++ b/x11-wm/compiz-fusion/Makefile @@ -12,12 +12,14 @@ EXTRACT_ONLY= # none MAINTAINER= ports@FreeBSD.org COMMENT= Metaport of compiz-fusion -LIB_DEPENDS= compizconfig:${PORTSDIR}/x11-wm/libcompizconfig +LIB_DEPENDS= libcompizconfig.so:${PORTSDIR}/x11-wm/libcompizconfig RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/compiz.pc:${PORTSDIR}/x11-wm/compiz \ ${LOCALBASE}/lib/compiz/libanimation.so:${PORTSDIR}/x11-wm/compiz-plugins-main \ ${LOCALBASE}/bin/ccsm:${PORTSDIR}/x11-wm/ccsm NO_BUILD= yes +NO_INSTALL= yes +NO_MTREE= yes OPTIONS_DEFINE= EXTRA UNSUP EMERALD GCONF OPTIONS_DEFAULT= GCONF EXTRA EMERALD @@ -26,26 +28,11 @@ EXTRA_DESC= Enable extra plugins UNSUP_DESC= Enable unsupported plugins EMERALD_DESC= Enable emerald window decorator -do-install: # empty - -NO_STAGE= yes -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MEXTRA} -RUN_DEPENDS+= ${LOCALBASE}/lib/compiz/libaddhelper.so:${PORTSDIR}/x11-wm/compiz-plugins-extra -.endif - -.if ${PORT_OPTIONS:MUNSUP} -RUN_DEPENDS+= ${LOCALBASE}/lib/compiz/libfakeargb.so:${PORTSDIR}/x11-wm/compiz-plugins-unsupported -.endif - -.if ${PORT_OPTIONS:MEMERALD} -RUN_DEPENDS+= ${LOCALBASE}/bin/emerald:${PORTSDIR}/x11-wm/emerald \ +EXTRA_RUN_DEPENDS= ${LOCALBASE}/lib/compiz/libaddhelper.so:${PORTSDIR}/x11-wm/compiz-plugins-extra +UNSUP_RUN_DEPENDS= ${LOCALBASE}/lib/compiz/libfakeargb.so:${PORTSDIR}/x11-wm/compiz-plugins-unsupported +EMERALD_RUN_DEPENDS= ${LOCALBASE}/bin/emerald:${PORTSDIR}/x11-wm/emerald \ ${LOCALBASE}/share/emerald/themes/Adonis_Mod/theme.ini:${PORTSDIR}/x11-themes/emerald-themes -.endif -.if ${PORT_OPTIONS:MGCONF} -RUN_DEPENDS+= ${LOCALBASE}/lib/compizconfig/backends/libgconf.so:${PORTSDIR}/x11-wm/compizconfig-backend-gconf -.endif +GCONF_RUN_DEPENDS= ${LOCALBASE}/lib/compizconfig/backends/libgconf.so:${PORTSDIR}/x11-wm/compizconfig-backend-gconf .include <bsd.port.mk> |