blob: 16924d6e20d70a5e1c3cd39e6e1d3d1ce0a25fa7 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# New ports collection makefile for: redshift
# Date created: Wed Nov 24 12:35:17 CST 2010
# Whom: Mark Felder <feld@feld.me>
#
# $FreeBSD$
#
PORTNAME= redshift
PORTVERSION= 1.7
PORTREVISION= 1
CATEGORIES= accessibility
MASTER_SITES= http://launchpad.net/redshift/trunk/${PORTVERSION}/+download/
MAINTAINER= feld@feld.me
COMMENT= Adjusts the color temperature of your screen
FETCH_ARGS= "-pRr"
USE_GMAKE= yes
USE_BZIP2= yes
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
MAN1= redshift.1
MANCOMPRESSED= no
CONFIGURE_ARGS+= --disable-wingdi
OPTIONS_DEFINE= GUI NLS RANDR VIDMODE
OPTIONS_DEFAULT= RANDR
GUI_DESC= Tray icon and location via Gnome clock
RANDR_DESC= Support RANDR for changing colors
VIDMODE_DESC= Support VIDMODE for changing colors (NVIDIA)
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT= yes
CONFIGURE_ARGS+=--with-libiconv-prefix=${LOCALBASE} \
--with-libintl-prefix=${LOCALBASE}
PLIST_SUB= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB= NLS="@comment "
.endif
.if ${PORT_OPTIONS:MRANDR}
CONFIGURE_ARGS+=--enable-randr
USE_XORG= xrandr
.else
CONFIGURE_ARGS+=--disable-randr
.endif
.if ${PORT_OPTIONS:MVIDMODE}
CONFIGURE_ARGS+=--enable-vidmode
.else
CONFIGURE_ARGS+=--disable-vidmode
.endif
.if ${PORT_OPTIONS:MGUI}
CONFIGURE_ARGS+=--enable-gui --enable-gnome-clock
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:${PORTSDIR}/x11-toolkits/py-gtk2 \
${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg
PLIST_SUB+= GUI=""
.else
CONFIGURE_ARGS+=--disable-gui --disable-gnome-clock
PLIST_SUB+= GUI="@comment "
.endif
.include <bsd.port.mk>
|