aboutsummaryrefslogtreecommitdiffstats
path: root/irc/xchat2/Makefile
blob: e82eea65d54f2380ab389aa2e4c5648cf78c6c03 (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
# New ports collection makefile for:    xchat
# Version required:     1.3.12
# Date created:         17 Nov 1998
# Whom:             Jim Mock <jim@FreeBSD.org>
#
# $FreeBSD$
#

DISTNAME=   xchat-1.3.12
CATEGORIES= irc
MASTER_SITES=   http://xchat.org/files/source/1.3/ \
        http://xchat.linuxpower.org/files/source/1.3/

MAINTAINER= jim@FreeBSD.org

LIB_DEPENDS=    gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \
        Imlib.5:${PORTSDIR}/graphics/imlib
.if defined(USE_GNOME)
LIB_DEPENDS+=   gnome.3:${PORTSDIR}/x11/gnomelibs
.endif

GTK_CONFIG?=    ${X11BASE}/bin/gtk12-config
GLIB_CONFIG?=   ${LOCALBASE}/bin/glib12-config

USE_X_PREFIX=   yes
USE_BZIP2=  yes
USE_GMAKE=  yes
USE_PERL5=  yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --disable-nls --disable-python

.if defined(USE_GNOME)
CONFIGURE_ARGS+= --enable-gnome
.if defined(USE_PANEL)
CONFIGURE_ARGS+= --enable-panel
.else
CONFIGURE_ARGS+= --disable-panel
.endif
.else
CONFIGURE_ARGS+= --disable-gnome
.endif

CONFIGURE_ENV=  GTK_CONFIG="${GTK_CONFIG}" \
        GLIB_CONFIG="${GLIB_CONFIG}"

.if defined(USE_GNOME)
PLIST=      ${PKGDIR}/PLIST.gnome
.endif

post-install:
    @strip ${PREFIX}/bin/xchat
.if !defined(NOPORTDOCS)
    @${ECHO} "===>   Installing xchat docs in ${PREFIX}/share/doc/xchat"
    @${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat
    @${INSTALL_DATA} ${WRKSRC}/doc/*.* ${PREFIX}/share/doc/xchat
    @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xchat
    @${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/xchat
.endif

.include <bsd.port.mk>