From owner-svn-ports-all@FreeBSD.ORG Fri Dec 20 12:55:37 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 58738C98; Fri, 20 Dec 2013 12:55:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 44DCE11E7; Fri, 20 Dec 2013 12:55:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBKCtbFA053834; Fri, 20 Dec 2013 12:55:37 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBKCtb4D053833; Fri, 20 Dec 2013 12:55:37 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201312201255.rBKCtb4D053833@svn.freebsd.org> From: Pietro Cerutti Date: Fri, 20 Dec 2013 12:55:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337007 - head/graphics/freeimage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Fri, 20 Dec 2013 12:55:37 -0000 Author: gahr Date: Fri Dec 20 12:55:36 2013 New Revision: 337007 URL: http://svnweb.freebsd.org/changeset/ports/337007 Log: - Fix installed symlink [1] - STAGE-clean - Convert to USES=dos2unix Reported by: antoine [1] Modified: head/graphics/freeimage/Makefile Modified: head/graphics/freeimage/Makefile ============================================================================== --- head/graphics/freeimage/Makefile Fri Dec 20 12:44:28 2013 (r337006) +++ head/graphics/freeimage/Makefile Fri Dec 20 12:55:36 2013 (r337007) @@ -3,7 +3,7 @@ PORTNAME= freeimage PORTVERSION= 3.15.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/Source%20Distribution/${PORTVERSION} DISTNAME= FreeImage${PORTVERSION:S/.//g} @@ -11,9 +11,9 @@ DISTNAME= FreeImage${PORTVERSION:S/.//g} MAINTAINER= gahr@FreeBSD.org COMMENT= Simple C/C++ bitmap graphics library -USES= gmake +USES= gmake dos2unix USE_ZIP= yes -USE_DOS2UNIX= Source/LibOpenJPEG/opj_malloc.h +DOS2UNIX_FILES= Source/LibOpenJPEG/opj_malloc.h USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/FreeImage MAKE_ARGS= CC=${CC} CPP=${CPP} CXX=${CXX} @@ -31,7 +31,6 @@ PLIST_FILES= include/FreeImage.h \ lib/libfreeimageplus.so.3 \ lib/libfreeimageplus.so -NO_STAGE= yes .include .if ${ARCH} == "amd64" @@ -47,7 +46,7 @@ post-build: post-install: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} -f Makefile.fip ${MAKE_ARGS} ${INSTALL_TARGET} - ${LN} -s libfreeimageplus-${PORTVERSION}.so.3 ${PREFIX}/lib/libfreeimageplus.so - ${LN} -s libfreeimageplus-${PORTVERSION}.so ${PREFIX}/lib/libfreeimageplus.so.3 + ${LN} -s libfreeimageplus.so.3 ${STAGEDIR}${PREFIX}/lib/libfreeimageplus.so + ${LN} -s libfreeimageplus-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libfreeimageplus.so.3 .include