mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
2b40e46093
This update allows (and for some requires) to also update dependencies to newer versions. Where possible I updated to the latest version. The ocaml port now is MAKE_JOBS safe. Changes to dependent ports included in this commit: - devel/ocaml-sexplib: Rename to devel/ocaml-sexplib0 adapting to upstream. Update to 0.16.0 - devel/coccinelle: Update to 1.1.1, moved to github - devel/ocaml-camlp4: Update to 4.08+1 - devel/ocaml-camomile: Use dune for build, adapt port - devel/ocaml-cppo: Fix lib files installation [1] - devel/ocaml-dune: Update to 3.7.1 [2] - devel/ocaml-findlib: Update to 1.9.6 [3] - devel/ocaml-ipaddr: Update to 3.1.0 - devel/ocaml-parmap: Update to 1.2.4, use dune for build [4] - devel/ocaml-ppx-tools: Update to 6.6, use dune for build - graphics/ocaml-cairo: Update to 0.6.4 - net-p2p/mldonkey: Update to 3.1.7-2 [2] - net/unison: Remove ocaml 4.07 compatibility patches - net/unison232: Mark broken, fails to build with newer ocaml [5] - security/ocaml-ssl: Update to 0.5.13 [2] - x11-toolkits/ocaml-labltk: Update to 8.06.7 [2] Dune now requires full path as argument to --libdir, so various ports have been patched accordingly. Bumping PORTREVISION for all dependent ports that were not updated. PR: 272067 Approved by: michipili@gmail.com (maintainer timeout), eduardo (maintainer timeout) [1], danfe [2], hrs (maintainer timeout) [3], dumbbell (maintainer timeout) [4], mandree (implicit) [5] Differential Revision: https://reviews.freebsd.org/D40599
98 lines
2.5 KiB
Makefile
98 lines
2.5 KiB
Makefile
PORTNAME= unison
|
|
PORTVERSION= 2.53.3
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= madpilot@FreeBSD.org
|
|
COMMENT= User-level file synchronization tool
|
|
WWW= https://www.cis.upenn.edu/~bcpierce/unison/
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
FLAVORS= x11 nox11
|
|
FLAVOR?= ${FLAVORS:[1]}
|
|
|
|
nox11_PKGNAMESUFFIX= -nox11
|
|
nox11_CONFLICTS_INSTALL= unison
|
|
|
|
x11_CONFLICTS_INSTALL= unison-nox11
|
|
x11_BUILD_DEPENDS= icotool:graphics/icoutils \
|
|
ocaml-lablgtk3>0:x11-toolkits/ocaml-lablgtk3
|
|
x11_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libharfbuzz.so:print/harfbuzz
|
|
|
|
USES= gmake localbase
|
|
USE_OCAML= yes
|
|
WRKSRC_SUBDIR= src
|
|
NO_OCAML_RUNDEPENDS= yes
|
|
CONFLICTS= unison-devel
|
|
MAKE_ENV= CLIBS="${LIBS:S/^-/-ccopt -/}" \
|
|
COFLAGS="${CFLAGS:C/ *(-[^ ]*) */ -ccopt \"\1 \"/gW}"
|
|
ALL_TARGET= unison all
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= bcpierce00
|
|
|
|
DOCS= NEWS.md README.md
|
|
|
|
OPTIONS_DEFINE= DOCS FSMONITOR
|
|
OPTIONS_DEFAULT?= FSMONITOR
|
|
|
|
FSMONITOR_DESC= Compile and install fsmonitor plugin
|
|
|
|
OPTIONS_SUB= YES
|
|
|
|
FSMONITOR_LIB_DEPENDS= libinotify.so:devel/libinotify
|
|
|
|
.if ${FLAVOR} == nox11
|
|
MAKE_ARGS= UISTYLE=text
|
|
PKGMESSAGE= ${PKGDIR}/pkg-message.nox11
|
|
PLIST_SUB+= X11="@comment "
|
|
.else
|
|
MAKE_ARGS= UISTYLE=gtk3
|
|
SUB_FILES= ${PORTNAME}.desktop
|
|
USE_GNOME+= atk cairo gdkpixbuf2 glib20 gtk30 pango
|
|
USES+= gettext-runtime gnome
|
|
PLIST_SUB+= X11=""
|
|
.endif
|
|
|
|
post-patch-FSMONITOR-off:
|
|
@${REINPLACE_CMD} -e 's/-include fsmonitor/#&/' \
|
|
${WRKSRC}/Makefile.OCaml
|
|
|
|
post-patch:
|
|
.if ${FLAVOR} == x11
|
|
@${REINPLACE_CMD} -Ee 's@(\+|/)(lablgtk3)@\1site-lib/\2@' \
|
|
${WRKSRC}/Makefile.OCaml
|
|
.endif
|
|
|
|
post-build:
|
|
(cd ${WRKSRC} && HOME=${WRKSRC} ./unison -selftest -ui text -batch)
|
|
.if ${FLAVOR} == x11
|
|
@${ECHO} Building text-only version
|
|
@${ECHO} ${WRKSRC}
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC} UISTYLE=text NAME=unison-text
|
|
@cd ${WRKSRC}/win32rc && ${LOCALBASE}/bin/icotool -x U.ico
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
.if ${FLAVOR} == x11
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}-text ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${STAGEDIR}${DESKTOPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/win32rc/U_4_48x48x32.png ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png
|
|
.endif
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/.. && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-install-FSMONITOR-on:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}-fsmonitor ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|