From owner-svn-ports-head@FreeBSD.ORG Mon Jul 7 14:19:55 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34B95DE0; Mon, 7 Jul 2014 14:19:55 +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 21EAC2A44; Mon, 7 Jul 2014 14:19:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s67EJt9t006436; Mon, 7 Jul 2014 14:19:55 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s67EJsQn006435; Mon, 7 Jul 2014 14:19:54 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201407071419.s67EJsQn006435@svn.freebsd.org> From: Tijl Coosemans Date: Mon, 7 Jul 2014 14:19:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361091 - head/security/libkpass 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 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: Mon, 07 Jul 2014 14:19:55 -0000 Author: tijl Date: Mon Jul 7 14:19:54 2014 New Revision: 361091 URL: http://svnweb.freebsd.org/changeset/ports/361091 QAT: https://qat.redports.org/buildarchive/r361091/ Log: - New LIB_DEPENDS syntax - Add INSTALL_TARGET=install-strip - Add USES=libtool - Replace CFLAGS/LDFLAGS with CPPFLAGS/LIBS Modified: head/security/libkpass/Makefile Modified: head/security/libkpass/Makefile ============================================================================== --- head/security/libkpass/Makefile Mon Jul 7 14:18:41 2014 (r361090) +++ head/security/libkpass/Makefile Mon Jul 7 14:19:54 2014 (r361091) @@ -3,6 +3,7 @@ PORTNAME= libkpass PORTVERSION= 5 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}/ @@ -11,19 +12,20 @@ COMMENT= Library for a reading/writing K LICENSE= GPLv3 -LIB_DEPENDS= nettle:${PORTSDIR}/security/nettle +LIB_DEPENDS= libnettle.so:${PORTSDIR}/security/nettle GNU_CONFIGURE= yes -USES= gettext gmake +INSTALL_TARGET= install-strip +USES= gettext gmake libtool USE_LDCONFIG= yes -CFLAGS+= -Dbswap_32=bswap32 -Dbswap_16=bswap16 \ +CPPFLAGS+= -Dbswap_32=bswap32 -Dbswap_16=bswap16 \ -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lintl +LIBS+= -L${LOCALBASE}/lib -lintl PLIST_FILES= include/kpass.h \ + lib/libkpass.a \ lib/libkpass.so \ lib/libkpass.so.1 \ - lib/libkpass.la \ - lib/libkpass.a + lib/libkpass.so.1.0.0 .include