From owner-svn-ports-all@FreeBSD.ORG Sun Oct 13 16:06:56 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4DE62A8C for ; Sun, 13 Oct 2013 16:06:56 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-lb0-f177.google.com (mail-lb0-f177.google.com [209.85.217.177]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B8CD3299A for ; Sun, 13 Oct 2013 16:06:55 +0000 (UTC) Received: by mail-lb0-f177.google.com with SMTP id w7so4913455lbi.36 for ; Sun, 13 Oct 2013 09:06:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=VX2m2s6BADuxCIyf3ekfWpnttTiNrzJR6+8168vuVSY=; b=XlW645eMMfA3iV/coNegm9GvmB9Qd9T9CnCtSCSe3w/ZpqeI0j9VcLRzADqVpn+EwB tAJc+hgAbT1EoOsZn1+ReAsqXf3TGp+vefXlio2OvkVLWKc+tHZD4GAas/z5pR6X3z6t wpRe3Iu91nxv4q9BellfFLCTNqORyDKfi3qjLtOpIl/w9olhE5RmKfgcBP4VTx1NX98l 2q5THj4f230m+xEj9pu+wOH9x5p3XvalBzySiUF8ZvlfgMvDFVkpzeS5CCM14ngHbnQk iPRJNTKTtBKiBC+NMDdJzTGMHtLMvNJPWQiNezVp3zQvWSRc/7C4nLDK5PQkcHuQSd/r usWQ== X-Gm-Message-State: ALoCoQlewQyxMfX4fosdEL/rSDCCyMOoO5XfUxrCkWO9jimtmpqZI5TZWbR5djfGQP8mdSIgQuqx X-Received: by 10.152.36.98 with SMTP id p2mr26474131laj.14.1381680408352; Sun, 13 Oct 2013 09:06:48 -0700 (PDT) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.112.91.9 with HTTP; Sun, 13 Oct 2013 09:06:28 -0700 (PDT) In-Reply-To: <201310131505.r9DF54PO019002@svn.freebsd.org> References: <201310131505.r9DF54PO019002@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 14 Oct 2013 00:06:28 +0800 X-Google-Sender-Auth: eQl3vMjEHGt9_VoJJ2JGvpau_0M Message-ID: Subject: Re: svn commit: r330231 - head/audio/faad To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 13 Oct 2013 16:06:56 -0000 On Sun, Oct 13, 2013 at 11:05 PM, Baptiste Daroussin wrote: > +post-install: > + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfaad.so.2 > + > .include > Hi Bapt, Regarding of stripping binary files and share libraries, I would suggest the following 2 ways I'm using recently: 1. Ref: sysutils/freeipmi MAKE_ENV= INSTALL_STRIP_FLAG=${STRIP} 2. Ref: audio/libmad post-build: @${STRIP_CMD} ${WRKSRC}/.libs/libmad.so.2 IMHO, it would be better to finish modifications during build phase. :) Regards, sunpoet