5513179e8b
- Remove dependency on desktop-file-utils, we do not install MIME types. PR: 183703 [1] Submitted by: madpilot [1]
81 lines
2.5 KiB
Makefile
81 lines
2.5 KiB
Makefile
# Created by: Dan Pelleg <dpelleg+unison@cs.cmu.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= unison
|
|
PORTVERSION= 2.32.52
|
|
PORTREVISION= 5
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${DISTNAME}/
|
|
PKGNAMESUFFIX= 232
|
|
DISTFILES= ${EXTRACT_ONLY} ${EXTRA_DOCS}
|
|
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
|
|
EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}.tar.gz
|
|
|
|
MAINTAINER= mandree@FreeBSD.org
|
|
# Implicit approval for port changes granted to Guido Falsi <madpilot@FreeBSD.org>
|
|
COMMENT= User-level file synchronization tool
|
|
|
|
LICENSE= GPLv3
|
|
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
USES= gmake
|
|
WANT_GNOME= yes
|
|
MAKE_ARGS= CFLAGS=""
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
DOCS= BUGS.txt NEWS README
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
|
|
EXTRA_DOCS= ${PORTNAME}-${PORTVERSION}-manual.html \
|
|
${PORTNAME}-${PORTVERSION}-manual.pdf ${PORTNAME}-${PORTVERSION}-manual.ps
|
|
|
|
OPTIONS_DEFINE= DOCS X11
|
|
OPTIONS_DEFAULT= DOCS X11
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MX11}
|
|
MAKE_ARGS+= UISTYLE=gtk2
|
|
PLIST_SUB+= TEXT=""
|
|
BUILD_DEPENDS+= ocamlc:${PORTSDIR}/lang/ocaml \
|
|
lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 \
|
|
icotool:${PORTSDIR}/graphics/icoutils
|
|
RUN_DEPENDS+= lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2
|
|
PATCH_DEPENDS+= ${BUILD_DEPENDS}
|
|
CONFLICTS+= ocaml-nox11*
|
|
SUB_FILES+= ${PORTNAME}.desktop
|
|
PLIST_FILES+= share/pixmaps/${PORTNAME}${PKGNAMESUFFIX}.png
|
|
.else
|
|
MAKE_ARGS+= UISTYLE=text
|
|
PLIST_SUB+= TEXT="@comment "
|
|
BUILD_DEPENDS+= ocamlc:${PORTSDIR}/lang/ocaml-nox11
|
|
PATCH_DEPENDS+= ${BUILD_DEPENDS}
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MX11}
|
|
post-patch:
|
|
@${REINPLACE_CMD} -Ee 's@(\+|/)(lablgtk2)@\1site-lib/\2@' \
|
|
${WRKSRC}/Makefile.OCaml
|
|
|
|
post-build:
|
|
@${ECHO} Building text-only version
|
|
@${ECHO} ${WRKSRC}
|
|
${GMAKE} -C ${WRKSRC} UISTYLE=text NAME=${PORTNAME}-text
|
|
@cd ${WRKSRC}/win32rc && ${LOCALBASE}/bin/icotool -x U.ico
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}
|
|
cd ${DISTDIR}/${DIST_SUBDIR} && ${INSTALL_DATA} ${EXTRA_DOCS} ${STAGEDIR}${DOCSDIR}
|
|
.if ${PORT_OPTIONS:MX11}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}-text ${STAGEDIR}${PREFIX}/bin/${PORTNAME}${PKGNAMESUFFIX}-text
|
|
${MKDIR} ${STAGEDIR}${DESKTOPDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${STAGEDIR}${DESKTOPDIR}/${PORTNAME}${PKGNAMESUFFIX}.desktop
|
|
@${INSTALL_DATA} ${WRKSRC}/win32rc/U_4_48x48x32.png ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}${PKGNAMESUFFIX}.png
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|