mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
7f9eb2aafc
- Convert from USE_GMAKE to USES=gmake
30 lines
635 B
Makefile
30 lines
635 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= peeper
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 9
|
|
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
|
|
USES= gmake
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} `${IMLIB_CONFIG} --cflags-gdk`" \
|
|
LIBS="`${IMLIB_CONFIG} --libs-gdk`"
|
|
ALL_TARGET= peeper
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/peeper ${PREFIX}/bin
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|