From owner-svn-ports-all@freebsd.org Mon Aug 8 14:17:37 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76AB5BB1860; Mon, 8 Aug 2016 14:17:37 +0000 (UTC) (envelope-from ehaupt@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 mx1.freebsd.org (Postfix) with ESMTPS id 46E9D1873; Mon, 8 Aug 2016 14:17:37 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u78EHaIv006780; Mon, 8 Aug 2016 14:17:36 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u78EHaxP006779; Mon, 8 Aug 2016 14:17:36 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201608081417.u78EHaxP006779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Mon, 8 Aug 2016 14:17:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419847 - head/dns/zonenotify 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.22 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: Mon, 08 Aug 2016 14:17:37 -0000 Author: ehaupt Date: Mon Aug 8 14:17:36 2016 New Revision: 419847 URL: https://svnweb.freebsd.org/changeset/ports/419847 Log: Strip binary Modified: head/dns/zonenotify/Makefile Modified: head/dns/zonenotify/Makefile ============================================================================== --- head/dns/zonenotify/Makefile Mon Aug 8 14:13:15 2016 (r419846) +++ head/dns/zonenotify/Makefile Mon Aug 8 14:17:36 2016 (r419847) @@ -3,6 +3,7 @@ PORTNAME= zonenotify PORTVERSION= 0.1 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= http://www.morettoni.net/bsd/ \ LOCAL/ehaupt @@ -18,6 +19,9 @@ post-patch: ${WRKSRC}/Makefile do-build: - ${CC} -o ${WRKSRC}/${PORTNAME} ${CFLAGS} ${WRKSRC}/zonenotify.c + ${CC} -o ${WRKSRC}/${PORTNAME} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include