2004-10-20 01:27:01 +00:00
|
|
|
# New ports collection makefile for: kf
|
|
|
|
# Date created: Tue Oct 19 01:48:30 UTC 2004
|
2005-12-15 20:34:46 +00:00
|
|
|
# Whom: Andrey Slusar <anray@FreeBSD.org>
|
2004-10-20 01:27:01 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= kf
|
2005-11-25 01:54:56 +00:00
|
|
|
PORTVERSION= 0.5.4.1
|
2009-07-31 13:57:52 +00:00
|
|
|
PORTREVISION= 5
|
2005-11-09 08:21:21 +00:00
|
|
|
CATEGORIES= net-im
|
2006-05-26 08:19:57 +00:00
|
|
|
MASTER_SITES= http://files.jabberstudio.org/kf/ \
|
|
|
|
http://jabberstudio.rediris.es/kf/ \
|
2006-05-23 21:25:18 +00:00
|
|
|
http://freebsd.unixfreunde.de/sources/
|
2004-10-20 01:27:01 +00:00
|
|
|
|
2005-12-15 20:34:46 +00:00
|
|
|
MAINTAINER= anray@FreeBSD.org
|
2004-10-20 01:27:01 +00:00
|
|
|
COMMENT= A simple Jabber client using the GTK+ 2.0 toolkit
|
|
|
|
|
2005-11-09 09:35:32 +00:00
|
|
|
LIB_DEPENDS= loudmouth-1.0:${PORTSDIR}/net-im/loudmouth
|
2004-10-20 01:27:01 +00: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 17:56:05 +00:00
|
|
|
USE_XORG= x11 xscrnsaver
|
2004-10-20 01:27:01 +00:00
|
|
|
USE_GNOME= libglade2
|
2006-02-23 10:40:44 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2004-10-20 01:27:01 +00:00
|
|
|
|
2004-12-26 18:20:59 +00:00
|
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
|
2006-06-27 06:16:11 +00:00
|
|
|
OPTIONS=GTKSPELL "Spell checking support" on \
|
|
|
|
NLS "Native Language Support" on
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2004-10-20 01:27:01 +00:00
|
|
|
.ifndef(WITHOUT_GTKSPELL)
|
2006-05-28 15:54:10 +00:00
|
|
|
LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell
|
2004-10-20 01:27:01 +00:00
|
|
|
CONFIGURE_ARGS+= --enable-gtkspell
|
|
|
|
.endif
|
|
|
|
|
2006-06-27 06:16:11 +00:00
|
|
|
.ifndef(WITHOUT_NLS)
|
2006-05-23 21:25:18 +00:00
|
|
|
USE_GETTEXT= yes
|
|
|
|
CONFIGURE_ARGS+= --enable-nls
|
|
|
|
PLIST_SUB= NLS=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
|
|
PLIST_SUB= NLS="@comment "
|
|
|
|
.endif
|
|
|
|
|
2006-06-27 06:16:11 +00:00
|
|
|
.include <bsd.port.post.mk>
|