From owner-svn-ports-all@FreeBSD.ORG Fri May 16 06:37:37 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 815E5A1D; Fri, 16 May 2014 06:37:37 +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 6E4E02E29; Fri, 16 May 2014 06:37:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4G6baRc059955; Fri, 16 May 2014 06:37:36 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4G6baUs059953; Fri, 16 May 2014 06:37:36 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201405160637.s4G6baUs059953@svn.freebsd.org> From: "Vanilla I. Shu" Date: Fri, 16 May 2014 06:37:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354195 - in head/databases/mysql-udf-sys: . 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-all@freebsd.org X-Mailman-Version: 2.1.18 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, 16 May 2014 06:37:37 -0000 Author: vanilla Date: Fri May 16 06:37:36 2014 New Revision: 354195 URL: http://svnweb.freebsd.org/changeset/ports/354195 QAT: https://qat.redports.org/buildarchive/r354195/ Log: Support staging. Approved by: portmgr@ Modified: head/databases/mysql-udf-sys/Makefile head/databases/mysql-udf-sys/files/patch-Makefile Modified: head/databases/mysql-udf-sys/Makefile ============================================================================== --- head/databases/mysql-udf-sys/Makefile Fri May 16 03:29:49 2014 (r354194) +++ head/databases/mysql-udf-sys/Makefile Fri May 16 06:37:36 2014 (r354195) @@ -18,12 +18,8 @@ WRKSRC= ${WRKDIR} PLIST_FILES= lib/mysql/plugin/lib_mysqludf_sys.so PLIST_DIRS= lib/mysql/plugin -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|; s|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/Makefile -post-install: - @${CAT} ${PKGMESSAGE} - .include Modified: head/databases/mysql-udf-sys/files/patch-Makefile ============================================================================== --- head/databases/mysql-udf-sys/files/patch-Makefile Fri May 16 03:29:49 2014 (r354194) +++ head/databases/mysql-udf-sys/files/patch-Makefile Fri May 16 06:37:36 2014 (r354195) @@ -1,5 +1,5 @@ ---- Makefile.orig 2009-01-18 23:11:00.000000000 -1000 -+++ Makefile 2011-12-12 13:16:07.000000000 -1000 +--- Makefile.orig 2009-01-19 17:11:00.000000000 +0800 ++++ Makefile 2014-05-16 14:36:12.368319209 +0800 @@ -1,4 +1,16 @@ -LIBDIR=/usr/lib + @@ -14,9 +14,8 @@ install: - gcc -Wall -I/usr/include/mysql -I. -shared lib_mysqludf_sys.c -o $(LIBDIR)/lib_mysqludf_sys.so -+ mkdir -p $(LIBDIR) -+ install -o root -g wheel -m 0755 $(PROG) $(LIBDIR) ++ mkdir -p $(DESTDIR)$(LIBDIR) ++ install -o root -g wheel -m 0755 $(PROG) $(DESTDIR)$(LIBDIR) + +clean: + rm -f $(PROG) -+