From owner-svn-ports-head@FreeBSD.ORG Wed Aug 27 03:24:51 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 9CE61FF3; Wed, 27 Aug 2014 03:24:51 +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 7D11E36F1; Wed, 27 Aug 2014 03:24:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7R3OpQx095256; Wed, 27 Aug 2014 03:24:51 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7R3OpCL095254; Wed, 27 Aug 2014 03:24:51 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201408270324.s7R3OpCL095254@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Wed, 27 Aug 2014 03:24:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366290 - in head/mail/pine-pgp-filters: . files 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-1 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: Wed, 27 Aug 2014 03:24:51 -0000 Author: vanilla Date: Wed Aug 27 03:24:50 2014 New Revision: 366290 URL: http://svnweb.freebsd.org/changeset/ports/366290 QAT: https://qat.redports.org/buildarchive/r366290/ Log: Stagify. Added: head/mail/pine-pgp-filters/files/ head/mail/pine-pgp-filters/files/patch-Makefile.in (contents, props changed) Modified: head/mail/pine-pgp-filters/Makefile Modified: head/mail/pine-pgp-filters/Makefile ============================================================================== --- head/mail/pine-pgp-filters/Makefile Wed Aug 27 03:15:44 2014 (r366289) +++ head/mail/pine-pgp-filters/Makefile Wed Aug 27 03:24:50 2014 (r366290) @@ -10,15 +10,13 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= ports@FreeBSD.org COMMENT= Simple /bin/sh-based filters to use GnuPG with Alpine +RUN_DEPENDS= alpine:${PORTSDIR}/mail/alpine + +PORTDOCS= BUGS CHANGES INSTALL LICENSE README PLIST_FILES= bin/ppf_mime bin/ppf_mime_decrypt \ libexec/ppf_decrypt libexec/ppf_encrypt libexec/ppf_mime \ libexec/ppf_mime_decrypt libexec/ppf_sign libexec/ppf_verify -NO_STAGE= yes -.include - -RUN_DEPENDS= alpine:${PORTSDIR}/mail/alpine - # We want to be version-agnostic here, but also record the right dependency # if the user installs the package and already has one or the other installed. .if exists(${LOCALBASE}/bin/gpg2) @@ -35,15 +33,10 @@ verify: checksum do-configure: @(cd ${WRKSRC} && ./configure --prefix=${PREFIX}) -PORTDOCS= BUGS CHANGES INSTALL LICENSE README - post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor -.endif - @${CAT} ${PKGMESSAGE} -.include +.include Added: head/mail/pine-pgp-filters/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/pine-pgp-filters/files/patch-Makefile.in Wed Aug 27 03:24:50 2014 (r366290) @@ -0,0 +1,28 @@ +--- Makefile.in.orig 2014-08-27 11:21:39.552449460 +0800 ++++ Makefile.in 2014-08-27 11:22:32.666448424 +0800 +@@ -9,18 +9,18 @@ all: + done + + install: all +- @if [ ! -d @@PREFIX@@/libexec ]; then \ +- install -d -m 755 @@PREFIX@@/libexec; \ ++ @if [ ! -d $(DESTDIR)@@PREFIX@@/libexec ]; then \ ++ install -d -m 755 $(DESTDIR)@@PREFIX@@/libexec; \ + fi + +- install -m 555 $$PWD/out/ppf_* @@PREFIX@@/libexec ++ install -m 555 $$PWD/out/ppf_* $(DESTDIR)@@PREFIX@@/libexec + +- @if [ ! -d @@PREFIX@@/bin ]; then \ +- install -d -m 755 @@PREFIX@@/bin; \ ++ @if [ ! -d $(DESTDIR)@@PREFIX@@/bin ]; then \ ++ install -d -m 755 $(DESTDIR)@@PREFIX@@/bin; \ + fi + +- ln -sf @@PREFIX@@/libexec/ppf_mime @@PREFIX@@/bin/ppf_mime +- ln -sf @@PREFIX@@/libexec/ppf_mime_decrypt @@PREFIX@@/bin/ppf_mime_decrypt ++ ln -sf @@PREFIX@@/libexec/ppf_mime $(DESTDIR)@@PREFIX@@/bin/ppf_mime ++ ln -sf @@PREFIX@@/libexec/ppf_mime_decrypt $(DESTDIR)@@PREFIX@@/bin/ppf_mime_decrypt + + clean: + @if [ -d "$$PWD/out" ]; then \