svn commit: r503688 - head/net-im/coyim

Steve Wills swills at FreeBSD.org
Sat Jun 8 00:51:36 UTC 2019


Author: swills
Date: Sat Jun  8 00:51:35 2019
New Revision: 503688
URL: https://svnweb.freebsd.org/changeset/ports/503688

Log:
  net-im/coyim: Fix missing version number in About dialog
  
  PR:		238290
  Submitted by:	Santhosh Raju <santhosh.raju at gmail.com> (maintainer)

Modified:
  head/net-im/coyim/Makefile   (contents, props changed)

Modified: head/net-im/coyim/Makefile
==============================================================================
--- head/net-im/coyim/Makefile	Sat Jun  8 00:50:18 2019	(r503687)
+++ head/net-im/coyim/Makefile	Sat Jun  8 00:51:35 2019	(r503688)
@@ -3,7 +3,7 @@
 PORTNAME=	coyim
 DISTVERSIONPREFIX=	v
 DISTVERSION=	0.3.11
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net-im
 
 MAINTAINER=	santhosh.raju at gmail.com
@@ -16,10 +16,15 @@ BUILD_DEPENDS=	go:lang/go
 LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
 		libfreetype.so:print/freetype2
 
-USES=		gnome pkgconfig
+USES=		gnome pkgconfig shebangfix
 
 USE_GNOME=	atk cairo gdkpixbuf2 glib20 gtk30 pango
 
+SHEBANG_LANG=   sh
+sh_OLD_CMD=     "/usr/bin/env bash"
+sh_CMD=         /bin/sh
+SHEBANG_FILES=  gen_version_file.sh
+
 OPTIONS_DEFINE=	NLS
 OPTIONS_SUB=	yes
 
@@ -47,6 +52,7 @@ INSTALLATION_DIRS+=	share/applications share/pixmaps
 
 do-build:
 	cd ${WRKSRC}/${GH_SUBDIR} && \
+		./gen_version_file.sh ${DISTVERSIONPREFIX}${DISTVERSION} && \
 		${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} \
 		go build -tags ${GTK_BUILD_TAG} -o ${PORTNAME}
 


More information about the svn-ports-head mailing list