Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Mar 2020 18:53:05 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529755 - head/graphics/maim
Message-ID:  <202003281853.02SIr5DO064175@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Sat Mar 28 18:53:04 2020
New Revision: 529755
URL: https://svnweb.freebsd.org/changeset/ports/529755

Log:
  Install manpage under share/man/man1
  
  Also sort variables and use DISTVERSION instead of PORTVERSION.

Modified:
  head/graphics/maim/Makefile

Modified: head/graphics/maim/Makefile
==============================================================================
--- head/graphics/maim/Makefile	Sat Mar 28 18:37:49 2020	(r529754)
+++ head/graphics/maim/Makefile	Sat Mar 28 18:53:04 2020	(r529755)
@@ -1,9 +1,9 @@
 # $FreeBSD$
 
 PORTNAME=	maim
-PORTVERSION=	5.5.3
 DISTVERSIONPREFIX=	v
-PORTREVISION=	3
+DISTVERSION=	5.5.3
+PORTREVISION=	4
 CATEGORIES=	graphics
 
 MAINTAINER=	0mp@FreeBSD.org
@@ -12,8 +12,8 @@ COMMENT=	Screenshot utility with performance improveme
 LICENSE=	GPLv3
 
 BUILD_DEPENDS=	${LOCALBASE}/include/glm/glm.hpp:math/glm
-LIB_DEPENDS=	libImlib2.so:graphics/imlib2 \
-		libicuuc.so:devel/icu \
+LIB_DEPENDS=	libicuuc.so:devel/icu \
+		libImlib2.so:graphics/imlib2 \
 		libpng.so:graphics/png \
 		libslopy.so:x11/slop
 
@@ -23,12 +23,14 @@ GH_ACCOUNT=	naelstrof
 USE_GL=		gl glut
 USE_XORG=	ice sm x11 xcomposite xext xfixes xrandr xrender
 
-PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
-
 CMAKE_ARGS=	-DSLOP_LIBRARIES=${LOCALBASE}/lib/libslopy.so
 
+PLIST_FILES=	bin/${PORTNAME} \
+		share/man/man1/${PORTNAME}.1.gz
+
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
-	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 \
+		${STAGEDIR}${MAN1PREFIX}/share/man/man1
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003281853.02SIr5DO064175>