Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # $OpenBSD: Makefile,v 1.6 2017/05/06 08:44:09 ajacoutot Exp $
  2. COMMENT= VirtualBox client with remote management
  3. DISTNAME= RemoteBox-2.3
  4. PKGNAME= ${DISTNAME:L}
  5. CATEGORIES= sysutils x11 emulators
  6. HOMEPAGE= http://remotebox.knobgoblin.org.uk/
  7. MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
  8. # GPLv2
  9. PERMIT_PACKAGE_CDROM= Yes
  10. MASTER_SITES= http://remotebox.knobgoblin.org.uk/downloads/
  11. NO_BUILD= Yes
  12. NO_TEST= Yes
  13. PKG_ARCH= *
  14. RUN_DEPENDS= devel/desktop-file-utils \
  15. devel/xdg-utils \
  16. www/p5-SOAP-Lite \
  17. x11/freerdp \
  18. x11/p5-Gtk2
  19. pre-configure:
  20. ${SUBST_CMD} ${WRKSRC}/remotebox
  21. do-install:
  22. ${INSTALL_DATA_DIR} ${PREFIX}/share/{applications,pixmaps}
  23. ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/remotebox
  24. ${INSTALL_SCRIPT} ${WRKSRC}/remotebox ${PREFIX}/bin
  25. ${INSTALL_DATA} ${WRKSRC}/packagers-readme/remotebox.desktop \
  26. ${PREFIX}/share/applications/
  27. ${INSTALL_DATA} ${WRKSRC}/docs/remotebox.pdf \
  28. ${PREFIX}/share/doc/remotebox
  29. cd ${PREFIX}/share/pixmaps && \
  30. ln -sf ${TRUEPREFIX}/share/remotebox/icons/remotebox.png
  31. cp -Rp ${WRKSRC}/share/remotebox ${PREFIX}/share
  32. chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/remotebox
  33. .include <bsd.port.mk>