Index: head/www/gitea/Makefile =================================================================== --- head/www/gitea/Makefile (revision 452049) +++ head/www/gitea/Makefile (revision 452050) @@ -1,55 +1,65 @@ # Created by: Stefan Bethke # $FreeBSD$ PORTNAME= gitea PORTVERSION= 1.1.4 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= www MAINTAINER= stb@lassitu.de COMMENT= Compact self-hosted Git service LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= bash:shells/bash \ git:devel/git USES= go USE_GITHUB= yes GH_ACCOUNT= go-gitea GO_PKGNAME= code.gitea.io/${PORTNAME} GO_TARGET= -tags "${GO_TAGS}" USE_RC_SUBR= gitea SUB_FILES+= app.ini.sample SUB_LIST+= GITUSER=${USERS} USERS= git GROUPS= git OPTIONS_DEFINE= CERT PAM SQLITE CERT_DESC= Automatic creation of self-signed certificates PAM_DESC= Authentication using PAM SQLITE= Add SQLite as database backend OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CERT_VARS= GO_TAGS+=cert PAM_VARS= GO_TAGS+=pam SQLITE_VARS= GO_TAGS+=sqlite + +post-patch: + # Gitea releases don't supply the release version number; the + # automatic method to obtain the version number in the Gitea build + # system only works when sources are checked out from git. + # See https://github.com/go-gitea/gitea/issues/1136#issuecomment-311622745 + ${SED} -Ei .orig \ + -e 's#^(var Version = )"[^"]+"#\1"${PORTVERSION}"#' \ + ${GO_WRKSRC}/main.go do-install: ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin ${MKDIR} ${STAGEDIR}${ETCDIR}/conf ${INSTALL_DATA} ${WRKDIR}/app.ini.sample ${STAGEDIR}${ETCDIR}/conf/app.ini.sample ${INSTALL_DATA} ${GO_WRKSRC}/conf/app.ini ${STAGEDIR}${ETCDIR}/conf/app.ini.defaults ${MKDIR} ${STAGEDIR}${DATADIR} (cd ${GO_WRKSRC} && ${COPYTREE_SHARE} "options public templates" ${STAGEDIR}${DATADIR}) ${MKDIR} ${STAGEDIR}${DESTDIR}/var/db/${PORTNAME} ${MKDIR} ${STAGEDIR}${DESTDIR}/var/log/${PORTNAME} ${MKDIR} ${STAGEDIR}${DESTDIR}/var/run/${PORTNAME} .include