blob: 2136e270bfb4ffac1c02e7650a67fde39cd25138 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# New ports collection makefile for: qiv
# Date created: 25 December 1998
# Whom: Bill Fumerola <billf@chc-chimes.com>
#
# $Carpetsmoker: ports/graphics/qiv/Makefile,v 1.2 2008/01/26 15:24:30 carpetsmoker Exp $
# $FreeBSD$
#
PORTNAME= qiv
PORTVERSION= 2.2.2
CATEGORIES= graphics
MASTER_SITES= http://spiegl.de/qiv/download/
EXTRACT_SUFX= .tgz
MAINTAINER= rfarmer@predatorlabs.net
COMMENT= Small, fast GDK/Imlib2 image viewer
OPTIONS= XINERAMA "use multiple monitors" off
USE_GMAKE= yes
USE_GNOME= gtk20
LIB_DEPENDS= Imlib2.5:${PORTSDIR}/graphics/imlib2 \
exif.12:${PORTSDIR}/graphics/libexif
MAN1= qiv.1
PLIST_FILES= bin/qiv
USE_XORG+= x11
.include <bsd.port.pre.mk>
pre-configure:
.if ! defined(WITH_XINERAMA)
@${REINPLACE_CMD} 's|GTD.*=|#|' ${WRKSRC}/Makefile
.else
USE_XORG+= xinerama
.endif
do-configure:
@${REINPLACE_CMD} 's|/usr/local|${PREFIX}|; \
s|gcc|${CC}|; \
s|-O2|${CFLAGS}|; \
s|libs-gdk`|libs-gdk` ${LDFLAGS}|;' \
${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/qiv ${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/qiv.1 ${MAN1PREFIX}/man/man1/
.include <bsd.port.post.mk>
|