- Remove gdbm dependency wich is not required anymore.

- Remove leftout USE_REINPLACE.
- Make LDAP support optional.
- Remove ispell build and run dependency in favour of aspell only.
  Anyway if ispell installed it will be picked up by basa binary.

Approved by: marcus (mentor)
This commit is contained in:
Alexander Nedotsukov 2003-08-29 03:30:42 +00:00
parent 54f5773685
commit 6dd57a255c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=87948

View File

@ -15,26 +15,20 @@ DISTNAME= balsa-${PORTVERSION}
MAINTAINER= gnome@FreeBSD.org
COMMENT= A mail reader for the GNOME 2 desktop
BUILD_DEPENDS= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
LIB_DEPENDS= aspell.15:${PORTSDIR}/textproc/aspell \
pcre.0:${PORTSDIR}/devel/pcre \
esmtp.6:${PORTSDIR}/mail/libesmtp \
gdbm.3:${PORTSDIR}/databases/gdbm \
ltdl.4:${PORTSDIR}/devel/libltdl
RUN_DEPENDS= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_PERL5= yes
USE_REINPLACE= yes
USE_OPENSSL= yes
USE_GNOME= gnomeprefix gnomehack libgnomeui libgnomeprintui libgtkhtml
USE_OPENLDAP= yes
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
CONFIGURE_ARGS= --enable-threads \
--enable-gtkhtml \
--with-ldap \
--disable-more-warnings \
--with-ssl
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
@ -47,4 +41,9 @@ LIB_DEPENDS+= gpgme.9:${PORTSDIR}/security/gpgme
CONFIGURE_ARGS+= --enable-gpgme
.endif
.if !defined(WITHOUT_LDAP)
USE_OPENLDAP= yes
CONFIGURE_ARGS+= --with-ldap
.endif
.include <bsd.port.mk>