From owner-freebsd-pkg@FreeBSD.ORG Tue May 13 07:55:58 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 482B81D5 for ; Tue, 13 May 2014 07:55:58 +0000 (UTC) Received: from mail-ig0-x22c.google.com (mail-ig0-x22c.google.com [IPv6:2607:f8b0:4001:c05::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 19F8B28BC for ; Tue, 13 May 2014 07:55:58 +0000 (UTC) Received: by mail-ig0-f172.google.com with SMTP id uy17so4877909igb.11 for ; Tue, 13 May 2014 00:55:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:from:date:message-id:subject:to:content-type; bh=VIIHq0F0FGY4e7FtzsgLBSAC7vrkSNtLiPORftBK/QY=; b=TWzqVS9ymWlZly2dADJsypIkRsf6j3keJ1ZNFMWRD4Nfx5i0mTGfE2vNKVGh+eUKOW aL/bJpC6W/QNu68SyPANc/RMow/7Jhtj4hakghfqR02l8HtrHm2HE5aw5YK9BYX0nFgr U6/ym/N2Gx3XKvkZ9t0X5Gym7zgGUaWGa4Z/02M12/IOXJr61TgiJDphRpk7dpJsMeOO LoWjsik8vu1TtX0F/6bXNHXCpRFHAMCRsqtDbUyfhW59pypLiX0Hr5n3fVJp6PvqqZ+e tfYUond4QkE0swHxoFRV3CgQCpqN4WBF5uiQ/1ua/WYBmWSmRklwka0SeJoGEAXA3QFD 16ag== X-Received: by 10.50.128.83 with SMTP id nm19mr52468044igb.28.1399967757312; Tue, 13 May 2014 00:55:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.42.250.147 with HTTP; Tue, 13 May 2014 00:55:17 -0700 (PDT) Reply-To: hamza.abdelkebir@gmail.com From: Hamza Abdelkebir Date: Tue, 13 May 2014 09:55:17 +0200 Message-ID: Subject: Mysql server dependency To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2014 07:55:58 -0000 Hi all, I'm having trouble with the packaging of a port which should depend on mysql56-server (requirement). I use this in my Makefile : .... BUILD_DEPENDS+= ${LOCALBASE}/apache-tomcat-7.0:${PORTSDIR}/www/tomcat7 BUILD_DEPENDS+= ${LOCALBASE}/apache-tomcat-7.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 BUILD_DEPENDS+= ${LOCALBASE}/bin/mysql:${PORTSDIR}/databases/mysql56-server BUILD_DEPENDS+= ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql56-server RUN_DEPENDS+= ${LOCALBASE}/bin/mysql:${PORTSDIR}/databases/mysql56-server RUN_DEPENDS+= ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql56-server RUN_DEPENDS+= ${JAVAJARDIR}/servlet-api.jar:${PORTSDIR}/www/servlet-api RUN_DEPENDS+= ${LOCALBASE}/apache-tomcat-7.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 USE_MYSQL= server WITH_MYSQL_VER= 56 .... Then, I create the package using *make package*. Thank you for your help. Hamza