From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 15 09:00:43 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEE9A16A41C for ; Fri, 15 Jul 2005 09:00:43 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A851943D5E for ; Fri, 15 Jul 2005 09:00:37 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j6F90Z6a090991 for ; Fri, 15 Jul 2005 09:00:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j6F90ZZo090990; Fri, 15 Jul 2005 09:00:35 GMT (envelope-from gnats) Resent-Date: Fri, 15 Jul 2005 09:00:35 GMT Resent-Message-Id: <200507150900.j6F90ZZo090990@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Denis Shaposhnikov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C77F16A438 for ; Fri, 15 Jul 2005 08:54:37 +0000 (GMT) (envelope-from dsh@neva.vlink.ru) Received: from deliver.smtp.vlink.ru (alias.rigel.internal.vlink.ru [217.23.88.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE7C243D45 for ; Fri, 15 Jul 2005 08:54:36 +0000 (GMT) (envelope-from dsh@neva.vlink.ru) Received: from smtp.smtp.vlink.ru (clamav.smtp.vlink.ru [192.168.4.1]) by deliver.smtp.vlink.ru (Postfix) with ESMTP id 7BDE0455D9 for ; Fri, 15 Jul 2005 12:54:35 +0400 (MSD) Received: from neva.vlink.ru (neva.vlink.ru [217.107.252.29]) by smtp.smtp.vlink.ru (Postfix) with ESMTP id 4D342455D4 for ; Fri, 15 Jul 2005 12:54:35 +0400 (MSD) Received: from neva.vlink.ru (localhost [127.0.0.1]) by neva.vlink.ru (8.13.4/8.13.4) with ESMTP id j6F8sXnU091121; Fri, 15 Jul 2005 12:54:33 +0400 (MSD) (envelope-from dsh@neva.vlink.ru) Received: (from dsh@localhost) by neva.vlink.ru (8.13.4/8.13.4/Submit) id j6F8sWuX091117; Fri, 15 Jul 2005 12:54:32 +0400 (MSD) (envelope-from dsh) Message-Id: <200507150854.j6F8sWuX091117@neva.vlink.ru> Date: Fri, 15 Jul 2005 12:54:32 +0400 (MSD) From: Denis Shaposhnikov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dsh@neva.vlink.ru Subject: ports/83495: upgrade port: net/sulci (need mueller dictionary) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Denis Shaposhnikov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2005 09:00:43 -0000 >Number: 83495 >Category: ports >Synopsis: upgrade port: net/sulci (need mueller dictionary) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jul 15 09:00:35 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 6.0-CURRENT i386 >Organization: >Environment: System: FreeBSD neva.vlink.ru 6.0-CURRENT FreeBSD 6.0-CURRENT #18: Mon Jun 27 10:58:47 MSD 2005 dsh@neva.vlink.ru:/var/FreeBSD/obj/var/FreeBSD/src/sys/NEVA i386 >Description: Fix dependency list, because sulci use mueller dictionary by default. Thanks to Andrew Salnikov. >How-To-Repeat: >Fix: diff -Nru sulci.orig/Makefile sulci/Makefile --- sulci.orig/Makefile Thu Jul 14 02:54:35 2005 +++ sulci/Makefile Fri Jul 15 12:44:47 2005 @@ -16,12 +16,14 @@ BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml \ ${LOCALBASE}/lib/ocaml/cryptokit.cma:${PORTSDIR}/security/ocaml-cryptokit \ ${OCAML_SITELIBDIR}/ulex/ulexing.a:${PORTSDIR}/devel/ocaml-ulex \ - ocamlfind:${PORTSDIR}/devel/ocaml-findlib + ocamlfind:${PORTSDIR}/devel/ocaml-findlib \ + ${OCAML_SITELIBDIR}/netstring/netstring.a:${PORTSDIR}/www/ocaml-net \ + ${OCAML_SITELIBDIR}/pcre/pcre.a:${PORTSDIR}/devel/ocaml-pcre LIB_DEPENDS= sqlite.2:${PORTSDIR}/databases/sqlite2 \ pcre.0:${PORTSDIR}/devel/pcre-utf8 RUN_DEPENDS= ${OCAML_SITELIBDIR}/netstring/netstring.a:${PORTSDIR}/www/ocaml-net \ - ${OCAML_SITELIBDIR}/pcre/pcre.a:${PORTSDIR}/devel/ocaml-pcre -BUILD_DEPENDS+= ${RUN_DEPENDS} + ${OCAML_SITELIBDIR}/pcre/pcre.a:${PORTSDIR}/devel/ocaml-pcre \ + mueller:${PORTSDIR}/russian/mueller-dic OCAML_SITELIBDIR= ${LOCALBASE}/lib/ocaml/site-lib >Release-Note: >Audit-Trail: >Unformatted: