freebsd-ports/devel/librcc/Makefile
Dirk Meyer de78af3ac5 - update to 1.4.1
Reviewed by:	exp8 run on pointyhat
Supported by:	miwi
2010-03-28 06:47:48 +00:00

83 lines
1.9 KiB
Makefile

# New ports collection makefile for: librcc
# Date created: 30-12-2007
# Whom: Ulrich Spoerlein <uspoerlein@gmail.com>
#
# $FreeBSD$
#
PORTNAME= librcc
PORTVERSION= 0.2.9
PORTREVISION= 3
CATEGORIES= devel
MASTER_SITES= SF/rusxmms/Charset%20Conversion%20Library/${PORTVERSION} \
http://dside.dyndns.org/files/rusxmms/
MAINTAINER= fluffy@FreeBSD.org
COMMENT= Library used by rusxmms for language autodetection
LIB_DEPENDS= rcd.1:${PORTSDIR}/devel/librcd \
enca.5:${PORTSDIR}/converters/enca \
aspell.16:${PORTSDIR}/textproc/aspell
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GNOME= gnomehack lthack libxml2 glib12 gtk12
USE_GMAKE= yes
USE_ICONV= yes
USE_LDCONFIG= yes
USE_AUTOTOOLS= autoheader:262
CPPFLAGS= -I${LOCALBASE}/include
LIBS= -L${LOCALBASE}/lib
OPTIONS= BDB "Translation database support" off \
TRANSLATE "Online translation support" off \
TOOLS "Install recode configuration utility" on \
GTK2 "Use Gtk2 library/frontend" on
.include <bsd.port.options.mk>
.if defined(WITH_BDB)
USE_BDB= 41+
CPPFLAGS+= -I${BDB_INCLUDE_DIR}
LIBS+= -L${BDB_LIB_DIR}
CONFIGURE_ARGS+=--enable-bdb
.else
CONFIGURE_ARGS+=--disable-bdb
.endif
.if defined(WITH_TRANSLATE)
LIB_DEPENDS+= translate.0:${PORTSDIR}/textproc/libtranslate
CONFIGURE_ARGS+=--enable-libtranslate
.else
CONFIGURE_ARGS+=--disable-libtranslate
.endif
.if defined(WITH_GTK2)
USE_GNOME+= gtk20
PLIST_SUB+= WITH_GTK2=""
.else
CONFIGURE_ARGS+=--disable-glib1 --disable-gtk1
PLIST_SUB+= WITH_GTK2="@comment "
.endif
.if defined(WITH_TOOLS)
EXTRA_PATCHES+= ${FILESDIR}/extrapatch-rcc-config
PLIST_SUB+= TOOLS=""
.else
PLIST_SUB+= TOOLS="@comment "
.endif
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \
LIBS="${LIBS}" \
PTHREAD_LIBS="${PTHREAD_LIBS}"
pre-everything::
.if ${ARCH} == "i386"
.if defined(WITH_BDB) || defined (WITH_TRANSLATE)
@${ECHO} 'BDB/LibTranslate support may cause breakages in depended apps on ${ARCH}'
@${ECHO} 'Use it with caution'
.endif
.endif
.include <bsd.port.mk>