1658e38003
the entire screen, a window or a region, with a simple user The package also provides the gdisplay program, a simple image viewer with built-in directory file browser. WWW: http://www.softcraft.org/gsnapshot/ PR: ports/114829 Submitted by: Yinghong.Liu <relaxbsd@gmail.com>
44 lines
915 B
Makefile
44 lines
915 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
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= relaxbsd@gmail.com
|
|
COMMENT= A gtk+ based screen capture
|
|
|
|
USE_AUTOTOOLS= automake:15:env libtool:15
|
|
USE_GNOME= gtk20
|
|
GNU_CONFIGURE= yes
|
|
|
|
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>
|