73f7c91b5d
(Part 1)
32 lines
671 B
Makefile
32 lines
671 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: peeper
|
|
# Date created: Aug 9, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= peeper
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://peeper.sourceforge.net/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= View an area of the screen at a certain magnification
|
|
|
|
USE_GNOME= imlib
|
|
USE_GMAKE= yes
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} `${IMLIB_CONFIG} --cflags-gdk`" \
|
|
LIBS="`${IMLIB_CONFIG} --libs-gdk`"
|
|
ALL_TARGET= peeper
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/peeper ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|