From owner-svn-ports-head@FreeBSD.ORG Wed Jun 18 13:14:03 2014 Return-Path: Delivered-To: svn-ports-head@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 0253650C; Wed, 18 Jun 2014 13:14:03 +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 C9A862166; Wed, 18 Jun 2014 13:14:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5IDE2oC052631; Wed, 18 Jun 2014 13:14:02 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5IDE2vr052629; Wed, 18 Jun 2014 13:14:02 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406181314.s5IDE2vr052629@svn.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 18 Jun 2014 13:14:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358271 - in head/math/gdcalc: . 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 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, 18 Jun 2014 13:14:03 -0000 Author: vanilla Date: Wed Jun 18 13:14:02 2014 New Revision: 358271 URL: http://svnweb.freebsd.org/changeset/ports/358271 QAT: https://qat.redports.org/buildarchive/r358271/ Log: Stagify. Approved by: portmgr@ Added: head/math/gdcalc/files/patch-Makefile.in (contents, props changed) Modified: head/math/gdcalc/Makefile Modified: head/math/gdcalc/Makefile ============================================================================== --- head/math/gdcalc/Makefile Wed Jun 18 13:03:49 2014 (r358270) +++ head/math/gdcalc/Makefile Wed Jun 18 13:14:02 2014 (r358271) @@ -18,5 +18,4 @@ GNU_CONFIGURE= yes LDFLAGS+= -lm -NO_STAGE= yes .include Added: head/math/gdcalc/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/gdcalc/files/patch-Makefile.in Wed Jun 18 13:14:02 2014 (r358271) @@ -0,0 +1,30 @@ +--- Makefile.in.orig 2014-06-18 21:06:00.354774154 +0800 ++++ Makefile.in 2014-06-18 21:08:48.970775730 +0800 +@@ -595,19 +595,19 @@ dist-hook: + install-data-local: + @$(NORMAL_INSTALL) + if test -d $(srcdir)/pixmaps; then \ +- $(mkinstalldirs) $(prefix)/share/pixmaps; \ +- $(mkinstalldirs) $(prefix)/share/icons; \ ++ $(mkinstalldirs) $(DESTDIR)$(prefix)/share/pixmaps; \ ++ $(mkinstalldirs) $(DESTDIR)$(prefix)/share/icons; \ + for pixmap in $(srcdir)/pixmaps/*; do \ + if test -f $$pixmap; then \ +- $(INSTALL_DATA) $$pixmap $(prefix)/share/pixmaps; \ +- $(INSTALL_DATA) $$pixmap $(prefix)/share/icons; \ ++ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(prefix)/share/pixmaps; \ ++ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(prefix)/share/icons; \ + fi \ + done \ + fi +- $(mkinstalldirs) $(prefix)/share/gnome/apps/Utilities +- cp $(srcdir)/gdcalc.desktop $(prefix)/share/gnome/apps/Utilities +- $(mkinstalldirs) $(prefix)/share/applnk/Applications +- cp $(srcdir)/gdcalc.kdelnk $(prefix)/share/applnk/Applications ++ $(mkinstalldirs) $(DESTDIR)$(prefix)/share/gnome/apps/Utilities ++ cp $(srcdir)/gdcalc.desktop $(DESTDIR)$(prefix)/share/gnome/apps/Utilities ++ $(mkinstalldirs) $(DESTDIR)$(prefix)/share/applnk/Applications ++ cp $(srcdir)/gdcalc.kdelnk $(DESTDIR)$(prefix)/share/applnk/Applications + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: