mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
47 lines
944 B
Makefile
47 lines
944 B
Makefile
# New ports collection makefile for: gsnapshot
|
|
# Date created: 23 July 2007
|
|
# Whom: Yinghong.Liu <relaxbsd@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gsnapshot
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A gtk+ based screen capture
|
|
|
|
USE_AUTOTOOLS= automake:15:env libtool:15
|
|
USE_GNOME= gtk20
|
|
GNU_CONFIGURE= yes
|
|
USE_XORG= x11
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
|
|
|
|
DESKTOP_ENTRIES= "gsnapshot" \
|
|
"A gtk+ based screen capture" \
|
|
"" \
|
|
"gsnapshot" \
|
|
"Application;Graphics;" \
|
|
"false"
|
|
|
|
pre-configure:
|
|
@${LN} -sf ${AUTOMAKE_DIR}/install-sh ${WRKSRC}
|
|
@${LN} -sf ${AUTOMAKE_DIR}/depcomp ${WRKSRC}
|
|
@${LN} -sf ${AUTOMAKE_DIR}/missing ${WRKSRC}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|