From owner-svn-src-head@freebsd.org Thu Jul 5 11:03:12 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BEC710413C6; Thu, 5 Jul 2018 11:03:12 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1EB2C75E2C; Thu, 5 Jul 2018 11:03:12 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 00081190E9; Thu, 5 Jul 2018 11:03:11 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w65B3Bsj073692; Thu, 5 Jul 2018 11:03:11 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w65B3BRa073691; Thu, 5 Jul 2018 11:03:11 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <201807051103.w65B3BRa073691@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Thu, 5 Jul 2018 11:03:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r335977 - head/share/man/man7 X-SVN-Group: head X-SVN-Commit-Author: trasz X-SVN-Commit-Paths: head/share/man/man7 X-SVN-Commit-Revision: 335977 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2018 11:03:12 -0000 Author: trasz Date: Thu Jul 5 11:03:11 2018 New Revision: 335977 URL: https://svnweb.freebsd.org/changeset/base/335977 Log: Add trivial usage example to ports(7). MFC after: 2 weeks Sponsored by: DARPA, AFRL Modified: head/share/man/man7/ports.7 Modified: head/share/man/man7/ports.7 ============================================================================== --- head/share/man/man7/ports.7 Thu Jul 5 10:44:18 2018 (r335976) +++ head/share/man/man7/ports.7 Thu Jul 5 11:03:11 2018 (r335977) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd June 13, 2018 +.Dd July 5, 2018 .Dt PORTS 7 .Os .Sh NAME @@ -530,6 +530,13 @@ The default ports directory .It Pa /usr/ports/Mk/bsd.port.mk The big Kahuna. .El +.Sh EXAMPLES +Build and install Emacs: +.Bd -literal -offset indent +cd /usr/ports/editors/emacs +make install +.Ed +.Pp .Sh SEE ALSO .Xr make 1 , .Xr make.conf 5 ,