mirror of
https://git.freebsd.org/ports.git
synced 2025-05-02 19:46:41 -04:00
Simplify expressions for FreeBSD 13.X Reviewed by: many Differential Revision: https://reviews.freebsd.org/D46601
34 lines
927 B
Makefile
34 lines
927 B
Makefile
PORTNAME= mgdiff
|
|
DISTVERSION= 1.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= https://codeberg.org/BSDforge/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/
|
|
|
|
MAINTAINER= portmaster@BSDforge.com
|
|
COMMENT= Graphical front end to the UNIX diff command
|
|
WWW= https://codeberg.org/BSDforge/mgdiff/
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= imake motif xorg
|
|
USE_XORG= ice sm x11 xext xmu xt
|
|
|
|
DESKTOP_ENTRIES= "mgdiff" "GUI front end to the UNIX diff command" \
|
|
"mgdiff-48x48" \
|
|
"mgdiff" "GNOME;GTK;Motif;Development;System;" \
|
|
false
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD
|
|
CFLAGS+= -Wno-error=incompatible-function-pointer-types
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/mgdiff-48x48.xpm ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/mgdiff.x[bp]m ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
|
|
.include <bsd.port.mk>
|