2004-10-20 03:27:01 +02:00
|
|
|
# New ports collection makefile for: kf
|
|
|
|
# Date created: Tue Oct 19 01:48:30 UTC 2004
|
2005-12-15 21:34:46 +01:00
|
|
|
# Whom: Andrey Slusar <anray@FreeBSD.org>
|
2004-10-20 03:27:01 +02:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= kf
|
2005-11-25 02:54:56 +01:00
|
|
|
PORTVERSION= 0.5.4.1
|
2009-07-31 15:57:52 +02:00
|
|
|
PORTREVISION= 5
|
2005-11-09 09:21:21 +01:00
|
|
|
CATEGORIES= net-im
|
2006-05-26 10:19:57 +02:00
|
|
|
MASTER_SITES= http://files.jabberstudio.org/kf/ \
|
|
|
|
http://jabberstudio.rediris.es/kf/ \
|
2006-05-23 23:25:18 +02:00
|
|
|
http://freebsd.unixfreunde.de/sources/
|
2004-10-20 03:27:01 +02:00
|
|
|
|
2005-12-15 21:34:46 +01:00
|
|
|
MAINTAINER= anray@FreeBSD.org
|
2004-10-20 03:27:01 +02:00
|
|
|
COMMENT= A simple Jabber client using the GTK+ 2.0 toolkit
|
|
|
|
|
2005-11-09 10:35:32 +01:00
|
|
|
LIB_DEPENDS= loudmouth-1.0:${PORTSDIR}/net-im/loudmouth
|
2004-10-20 03:27:01 +02:00
|
|
|
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 19:56:05 +02:00
|
|
|
USE_XORG= x11 xscrnsaver
|
2004-10-20 03:27:01 +02:00
|
|
|
USE_GNOME= libglade2
|
2006-02-23 11:40:44 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2004-10-20 03:27:01 +02:00
|
|
|
|
2004-12-26 19:20:59 +01:00
|
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
|
2006-06-27 08:16:11 +02:00
|
|
|
OPTIONS=GTKSPELL "Spell checking support" on \
|
|
|
|
NLS "Native Language Support" on
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2004-10-20 03:27:01 +02:00
|
|
|
.ifndef(WITHOUT_GTKSPELL)
|
2006-05-28 17:54:10 +02:00
|
|
|
LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell
|
2004-10-20 03:27:01 +02:00
|
|
|
CONFIGURE_ARGS+= --enable-gtkspell
|
|
|
|
.endif
|
|
|
|
|
2006-06-27 08:16:11 +02:00
|
|
|
.ifndef(WITHOUT_NLS)
|
2006-05-23 23:25:18 +02:00
|
|
|
USE_GETTEXT= yes
|
|
|
|
CONFIGURE_ARGS+= --enable-nls
|
|
|
|
PLIST_SUB= NLS=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
|
|
PLIST_SUB= NLS="@comment "
|
|
|
|
.endif
|
|
|
|
|
2006-06-27 08:16:11 +02:00
|
|
|
.include <bsd.port.post.mk>
|