From owner-svn-ports-all@FreeBSD.ORG Fri Feb 28 13:18:24 2014 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 63E97FA4; Fri, 28 Feb 2014 13:18:24 +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 503A21A3A; Fri, 28 Feb 2014 13:18:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1SDIOmA092380; Fri, 28 Feb 2014 13:18:24 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1SDIOfJ092379; Fri, 28 Feb 2014 13:18:24 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201402281318.s1SDIOfJ092379@svn.freebsd.org> From: Emanuel Haupt Date: Fri, 28 Feb 2014 13:18:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346508 - head/security/pam_google_authenticator 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, 28 Feb 2014 13:18:24 -0000 Author: ehaupt Date: Fri Feb 28 13:18:23 2014 New Revision: 346508 URL: http://svnweb.freebsd.org/changeset/ports/346508 QAT: https://qat.redports.org/buildarchive/r346508/ Log: - Support staging - USES -> gmake Modified: head/security/pam_google_authenticator/Makefile Modified: head/security/pam_google_authenticator/Makefile ============================================================================== --- head/security/pam_google_authenticator/Makefile Fri Feb 28 13:13:09 2014 (r346507) +++ head/security/pam_google_authenticator/Makefile Fri Feb 28 13:18:23 2014 (r346508) @@ -12,13 +12,14 @@ COMMENT= PAM module for two-step authent LICENSE= APACHE20 -USE_GMAKE= yes +USES= gmake PLIST_FILES= bin/google-authenticator lib/pam_google_authenticator.so -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/google-authenticator ${PREFIX}/bin/google-authenticator - ${INSTALL_LIB} ${WRKSRC}/pam_google_authenticator.so ${PREFIX}/lib/pam_google_authenticator.so + ${INSTALL_PROGRAM} ${WRKSRC}/google-authenticator \ + ${STAGEDIR}${PREFIX}/bin/google-authenticator + ${INSTALL_LIB} ${WRKSRC}/pam_google_authenticator.so \ + ${STAGEDIR}${PREFIX}/lib/pam_google_authenticator.so .include