From owner-svn-ports-all@FreeBSD.ORG Sun Sep 2 17:45:33 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 1CF981065674; Sun, 2 Sep 2012 17:45:33 +0000 (UTC) Date: Sun, 2 Sep 2012 17:45:33 +0000 From: Alexey Dokuchaev To: Alberto Villa Message-ID: <20120902174533.GE10884@FreeBSD.org> References: <201209010946.q819kRxc085704@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <201209010946.q819kRxc085704@svn.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r303465 - head/multimedia/mlt X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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, 02 Sep 2012 17:45:33 -0000 On Sat, Sep 01, 2012 at 09:46:27AM +0000, Alberto Villa wrote: > -LICENSE= LGPL21 GPLv2 GPLv3 > +LICENSE= GPLv2 GPLv3 LGPL21 > LICENSE_COMB= multi > -LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING > LICENSE_FILE_GPLv2= ${WRKSRC}/GPL > LICENSE_FILE_GPLv3= ${WRKSRC}/GPLv3 > +LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING Any special reason to install copies of standard licenses? > +GTK2_DESC= GTK+ 2 support (images, text rendering...) It seems that we commonly do not put space after GTK+ (e.g. GTK+1, GTK+2). > +LIB_DEPENDS+= avformat:${PORTSDIR}/multimedia/ffmpeg > CONFIGURE_ARGS+= --enable-avformat \ > --avformat-swscale You could have saved a line in CONFIGURE_ARGS here since both options would fit on one line. \ makes sense for long argument list to improve readability and "svn blame" output, but not in this particular case. > -.ifndef(WITHOUT_GTK2) > +.if ${PORT_OPTIONS:MGTK2} > LIB_DEPENDS+= exif.12:${PORTSDIR}/graphics/libexif You also could've dropped shlib version number here (and below), unless particular ABI is indeed required (in this case, it should been mentioned in commit log or Makefile comment). > pre-configure: > - ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ > + ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' \ These seem unnecessary and just shadow whom to "svn blame". Also, perhaps global modifier is superfluous here (also below). ./danfe