From owner-svn-ports-head@FreeBSD.ORG Fri Oct 31 21:58:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F967903; Fri, 31 Oct 2014 21:58:20 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B9849C8; Fri, 31 Oct 2014 21:58:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9VLwJC5084958; Fri, 31 Oct 2014 21:58:19 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9VLwJav084957; Fri, 31 Oct 2014 21:58:19 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410312158.s9VLwJav084957@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 31 Oct 2014 21:58:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371940 - head/textproc/utf8proc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Oct 2014 21:58:20 -0000 Author: antoine Date: Fri Oct 31 21:58:19 2014 New Revision: 371940 URL: https://svnweb.freebsd.org/changeset/ports/371940 QAT: https://qat.redports.org/buildarchive/r371940/ Log: Fix a dead symlink Modified: head/textproc/utf8proc/Makefile Modified: head/textproc/utf8proc/Makefile ============================================================================== --- head/textproc/utf8proc/Makefile Fri Oct 31 21:43:47 2014 (r371939) +++ head/textproc/utf8proc/Makefile Fri Oct 31 21:58:19 2014 (r371940) @@ -3,6 +3,7 @@ PORTNAME= utf8proc PORTVERSION= 1.1.6 +PORTREVISION= 1 CATEGORIES= textproc devel MASTER_SITES= http://www.public-software-group.org/pub/projects/${PORTNAME}/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} @@ -15,9 +16,9 @@ ALL_TARGET= c-library USE_LDCONFIG= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/libutf8proc.so ${STAGEDIR}${PREFIX}/lib/libutf8proc.so.1 + ${INSTALL_LIB} ${WRKSRC}/libutf8proc.so ${STAGEDIR}${PREFIX}/lib/libutf8proc.so.1 ${INSTALL_DATA} ${WRKSRC}/libutf8proc.a ${STAGEDIR}${PREFIX}/lib ${INSTALL_DATA} ${WRKSRC}/utf8proc.h ${STAGEDIR}${PREFIX}/include - ${LN} -sf libutf8proc.so.0 ${STAGEDIR}${PREFIX}/lib/libutf8proc.so + ${LN} -sf libutf8proc.so.1 ${STAGEDIR}${PREFIX}/lib/libutf8proc.so .include