From owner-svn-ports-all@FreeBSD.ORG Fri Feb 28 08:42:58 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7476DE4; Fri, 28 Feb 2014 08:42:58 +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 B357510C3; Fri, 28 Feb 2014 08:42:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1S8gwoE082296; Fri, 28 Feb 2014 08:42:58 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1S8gwsL082295; Fri, 28 Feb 2014 08:42:58 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201402280842.s1S8gwsL082295@svn.freebsd.org> From: Emanuel Haupt Date: Fri, 28 Feb 2014 08:42:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346465 - head/net/hostapd 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 08:42:58 -0000 Author: ehaupt Date: Fri Feb 28 08:42:58 2014 New Revision: 346465 URL: http://svnweb.freebsd.org/changeset/ports/346465 QAT: https://qat.redports.org/buildarchive/r346465/ Log: Support staging Modified: head/net/hostapd/Makefile Modified: head/net/hostapd/Makefile ============================================================================== --- head/net/hostapd/Makefile Fri Feb 28 08:42:54 2014 (r346464) +++ head/net/hostapd/Makefile Fri Feb 28 08:42:58 2014 (r346465) @@ -12,16 +12,12 @@ COMMENT= IEEE 802.11 AP, IEEE 802.1X/WPA LICENSE= GPLv2 BSD LICENSE_COMB= dual -USE_GMAKE= yes +USES= gmake BUILD_WRKSRC= ${WRKSRC}/${PORTNAME} -MAN1= hostapd_cli.1 -MAN8= hostapd.8 +PLIST_FILES= sbin/hostapd sbin/hostapd_cli man/man1/hostapd_cli.1.gz \ + man/man8/hostapd.8.gz -PLIST_FILES= sbin/hostapd \ - sbin/hostapd_cli - -NO_STAGE= yes .include .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" @@ -36,9 +32,12 @@ do-configure: ${CP} ${FILESDIR}/config ${WRKSRC}/hostapd/.config do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd_cli ${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/hostapd/${MAN1} ${MAN1PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/hostapd/${MAN8} ${MAN8PREFIX}/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd_cli \ + ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/hostapd/hostapd_cli.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/hostapd/hostapd.8 \ + ${STAGEDIR}${MANPREFIX}/man/man8 .include