mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
168b1e2955
Gromit (GRaphics Over MIscellaneous Things) is a small tool to make annotations on the screen. When making presentations of the Gimp I found myself often moving the mousepointer around the point of interest until hopefully everybody noticed it. This annoyed me, since it is a very vague way to highlight something. I dreamt of a small programm which allows me to simply draw on the screen, ignoring any window-borders. PR: ports/48885 Submitted by: Sergei Kolobov <sergei@kolobov.com>
33 lines
763 B
Makefile
33 lines
763 B
Makefile
# New ports collection makefile for: gromit
|
|
# Date Created: 03 Mar 2003
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gromit
|
|
PORTVERSION= 20011210
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.home.unix-ag.org/simon/gromit/
|
|
|
|
MAINTAINER= sergei@kolobov.com
|
|
COMMENT= "GRaphics Over Miscellaneous Objects (Gromit)"
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GNOMENG= yes
|
|
USE_GNOME= gtk12
|
|
|
|
DOCS= AUTHORS ChangeLog README
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gromit ${PREFIX}/bin
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/gromitrc ${EXAMPLESDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/sawfish-config ${EXAMPLESDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|