From owner-freebsd-ports@FreeBSD.ORG Sat Aug 11 16:31:36 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B2E216A418 for ; Sat, 11 Aug 2007 16:31:36 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.freebsd.org (Postfix) with ESMTP id BADBF13C459 for ; Sat, 11 Aug 2007 16:31:35 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so1894025pye for ; Sat, 11 Aug 2007 09:31:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=ueaubmRCoyvfPU1TFbHrkMVgW4PuyqWn15qkyQBxYMZTCkO+GSDpLv6rCwczWOHPFTnxEYeApatSV1IGEGyu/27jPPMg/a24YWTuG/W3BIPucyz9K6kIlEzGrcQrO3VcZP7n3I/Cxgwug3CQPWPjNcH7PdrFu4WMmkqSai6W0OI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=FU9yAomXlgQf1EjIMRIiYXCor25tO97qOyWJgxkx+pSLHT5Psn0+Xa0dtzIB4YUc/WJ8SL8z89MP8sWovLcRDF51hrivpXHc6qf2YAdDUGfPkeup699FDdaZ3rv7OYn/4sKb5zu7rXf7FTGKrVrFAHSpQ0niQysSv9Gc2JwOsgs= Received: by 10.64.241.3 with SMTP id o3mr6935160qbh.1186849894721; Sat, 11 Aug 2007 09:31:34 -0700 (PDT) Received: by 10.65.206.14 with HTTP; Sat, 11 Aug 2007 09:31:34 -0700 (PDT) Message-ID: <70f41ba20708110931i4262c224kd0479290616c4fa8@mail.gmail.com> Date: Sat, 11 Aug 2007 09:31:34 -0700 From: snowcrash+freebsd Sender: schneecrash@gmail.com To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: 89c262d19c7ae617 Subject: request add db45/db46 support to mail/exim port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Aug 2007 16:31:36 -0000 hi, i've fbsd 62Rp7 installed. i've updated my sys to use db46 (berkeley db), and set WITH_BDB_VER/USE_BDB/etc accordingly in make.conf ... current portupgrade complains: ** Port marked as IGNORE: mail/exim: is marked as broken: WITH_BDB_VER must be either 1, 4, 41, 42, 43 or 44 fix seems trivial, ------------------------------ diff -ur eximORIG/Makefile exim/Makefile --- eximORIG/Makefile Wed Aug 8 19:07:15 2007 +++ exim/Makefile Wed Aug 8 19:10:30 2007 @@ -347,8 +347,12 @@ DB_LIBS= -L${LOCALBASE}/lib -ldb-4.4 DB_INCLUDES= -I${LOCALBASE}/include/db44 LIB_DEPENDS+= db-4.4.0:${PORTSDIR}/databases/db44 +.elif (${WITH_BDB_VER} == 45) +DB_LIBS= -L${LOCALBASE}/lib -ldb-4.5 +DB_INCLUDES= -I${LOCALBASE}/include/db45 +LIB_DEPENDS+= db-4.5.0:${PORTSDIR}/databases/db45 +.elif (${WITH_BDB_VER} == 46) +DB_LIBS= -L${LOCALBASE}/lib -ldb-4.6 +DB_INCLUDES= -I${LOCALBASE}/include/db46 +LIB_DEPENDS+= db-4.6.0:${PORTSDIR}/databases/db46 .else -BROKEN= WITH_BDB_VER must be either 1, 4, 41, 42, 43 or 44 +BROKEN= WITH_BDB_VER must be either 1, 4, 41, 42, 43, 44, 45 or 46 .endif SEDLIST+= -e 's,XX_DB_LIBS_XX,${DB_LIBS},' \ -e 's,XX_DB_INCLUDES_XX,${DB_INCLUDES},' ------------------------------ thanks.