From owner-svn-ports-all@FreeBSD.ORG Tue Dec 24 10:35:13 2013 Return-Path: Delivered-To: svn-ports-all@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 EB5635F2; Tue, 24 Dec 2013 10:35:13 +0000 (UTC) Received: from mail-la0-x235.google.com (mail-la0-x235.google.com [IPv6:2a00:1450:4010:c03::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E14A511E2; Tue, 24 Dec 2013 10:35:12 +0000 (UTC) Received: by mail-la0-f53.google.com with SMTP id mc6so2755076lab.40 for ; Tue, 24 Dec 2013 02:35:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=3JGm5P7O93rwGOFW1P3CtNORdD7bnAjJ+TIpm/YTvRY=; b=l1y6pzNIONCeLZhysYp1SEiTUGFMWriyGdY05jtce8kKCSMbDSsYhATrWGUxyU4uBm jKCm9Vxf8FokuzLSNNLF2BJgs5SqgckKQ3WJqB6/4eWHhpWmAwVSaF5jUGIngntYlHT7 ekWymh/Y4mutcVcgCK++2AMyz2dvsP0L2QMMLsfG+Ja4oWANWNBxXLtGLMdlxI0NTwRz JowkcrZix4UcQ2TlOhikRBMB/Eqy2zst3pGyaDMe7JwlEqbGvnmHAuJElz0ZZnI2jzXc UrTxCDZ7L2uq2WDCGme1gy3oKtO+k/USue7Daxd+g2Fo0GByd6lR6q1j1WWV4UUDCha3 iTmw== MIME-Version: 1.0 X-Received: by 10.112.188.135 with SMTP id ga7mr12660408lbc.5.1387881310747; Tue, 24 Dec 2013 02:35:10 -0800 (PST) Received: by 10.152.130.193 with HTTP; Tue, 24 Dec 2013 02:35:10 -0800 (PST) In-Reply-To: <201312241016.rBOAGIUZ029565@svn.freebsd.org> References: <201312241016.rBOAGIUZ029565@svn.freebsd.org> Date: Tue, 24 Dec 2013 11:35:10 +0100 Message-ID: Subject: Re: svn commit: r337329 - head/databases/mysql-proxy From: Olivier Duchateau To: Antoine Brodin Content-Type: text/plain; charset=ISO-8859-1 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Dec 2013 10:35:14 -0000 2013/12/24 Antoine Brodin : > Author: antoine > Date: Tue Dec 24 10:16:18 2013 > New Revision: 337329 > URL: http://svnweb.freebsd.org/changeset/ports/337329 > > Log: > Fix LIB_DEPENDS and plist > > Modified: > head/databases/mysql-proxy/Makefile > head/databases/mysql-proxy/pkg-plist > > Modified: head/databases/mysql-proxy/Makefile > ============================================================================== > --- head/databases/mysql-proxy/Makefile Tue Dec 24 09:51:50 2013 (r337328) > +++ head/databases/mysql-proxy/Makefile Tue Dec 24 10:16:18 2013 (r337329) > @@ -11,7 +11,7 @@ MAINTAINER= swills@FreeBSD.org > COMMENT= Monitor, analyze, or transform the communication of MySQL > > LIB_DEPENDS= libevent-1.4.so:${PORTSDIR}/devel/libevent \ > - libglib.so:${PORTSDIR}/devel/glib20 > + libglib-2.0.so:${PORTSDIR}/devel/glib20 Why not use USE_GNOME= glib20 ? > > CONFIGURE_ARGS+= --with-lua=lua-5.1 --with-mysql=${LOCALBASE}/bin/mysql_config --docdir=${DATADIR} --enable-self-contained > CFLAGS+= -I${LOCALBASE}/include > > Modified: head/databases/mysql-proxy/pkg-plist > ============================================================================== > --- head/databases/mysql-proxy/pkg-plist Tue Dec 24 09:51:50 2013 (r337328) > +++ head/databases/mysql-proxy/pkg-plist Tue Dec 24 10:16:18 2013 (r337329) > @@ -133,7 +133,4 @@ libexec/pkgconfig/mysql-proxy.pc > @dirrmtry lib/mysql-proxy > @dirrmtry libexec/pkgconfig > @dirrmtry %%EXAMPLESDIR%% > -@dirrmtry %%DATADIR%%/lua/proxy > -@dirrmtry %%DATADIR%%/lua > @dirrmtry %%DATADIR%% > -@dirrmtry %%DOCSDIR%% -- olivier