aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/nvclock/Makefile
blob: 6de766fa33ca4f40367adc74dd5c71a1d4154093 (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
# New ports collection makefile for:    NVClock
# Date created:             August 4, 2003
# Whom:                 Samy Al Bahra <samy@kerneled.com>
#
# $FreeBSD$
#

PORTNAME=   nvclock
DISTVERSION=    0.8b4
PORTREVISION=   3
CATEGORIES= sysutils
MASTER_SITES=   SF/${PORTNAME}/${PORTNAME}/0.8%20%28beta4%29
DISTNAME=   nvclock${DISTVERSION}

MAINTAINER= danfe@FreeBSD.org
COMMENT=    NVidia graphic card status and overclocking tool

USE_GMAKE=  yes
GNU_CONFIGURE=  yes

PLIST_FILES=    bin/nvclock \
        bin/smartdimmer
MAN1=       nvclock.1
PORTDOCS=   ABOUT AUTHORS ChangeLog FAQ README

OPTIONS=    NVCONTROL   "Enable NV-CONTROL support" on \
        GTK2        "Build GTK user interface"  on \
        QT      "Build Qt 3.x user interface"   off

.include <bsd.port.options.mk>

.if defined(WITH_NVCONTROL)
USE_XORG=   xext
USE_GNOME=  pkgconfig
.else
CONFIGURE_ARGS+=    --disable-nvcontrol
.endif

.if defined(WITH_GTK2)
USE_GNOME=  gtk20
PLIST_FILES+=   bin/nvclock_gtk
.else
CONFIGURE_ARGS+=    --disable-gtk
.endif

.if defined(WITH_QT)
USE_QT_VER= 3
CONFIGURE_ARGS+=    --enable-qt --with-qtdir=${LOCALBASE}
PLIST_FILES+=   bin/nvclock_qt
.endif

post-patch:
    @${REINPLACE_CMD} -E 's|^(C(XX)?FLAGS)=|\1+=|' \
        ${WRKSRC}/src/backend/Makefile.in \
        ${WRKSRC}/src/gtk/Makefile.in \
        ${WRKSRC}/src/qt/Makefile.in \
        ${WRKSRC}/src/nvcontrol/Makefile.in

do-install:
    ${GMAKE} -C ${WRKSRC}/src install
    ${GMAKE} -C ${WRKSRC} install-man
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    ${GMAKE} -C ${WRKSRC} install-docs
.endif

.include <bsd.port.mk>