ports Makefile does not install "myloader" which is the opposite of "mydumper". The second target exists since release 0.2.1 of mydumper. Fix: See attached patch Patch attached with submission follows: How-To-Repeat: Install databases/mydumper from ports
Maintainer of databases/mydumper, Please note that PR ports/171827 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171827 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Thanks, please commit it and bump PORTREVISION. On Thu, Sep 20, 2012 at 10:50:24PM +0000, Edwin Groothuis wrote: > Maintainer of databases/mydumper, > > Please note that PR ports/171827 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171827 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org -- * Gea-Suan Lin (public key: Using https://keyserver.pgp.com/ to search) * If you cannot convince them, confuse them. -- Harry S Truman
Responsible Changed From-To: freebsd-ports-bugs->rm I will take it.
Author: rm Date: Sat Sep 22 07:10:59 2012 New Revision: 304665 URL: http://svn.freebsd.org/changeset/ports/304665 Log: - install `myloader' binary too - bump PORTREVISION while here: - convert Makefile header to two-lines format - remove cmake from BUILD_DEPENDS, because it's implied by USE_CMAKE - tab -> space in pkg-descr PR: 171827 Submitted by: Armin Gruner <ag-freebsd at muc dot de> Approved by: Gea-Suan Lin <gslin at gslin dot org> (maintainer) Modified: head/databases/mydumper/Makefile head/databases/mydumper/pkg-descr Modified: head/databases/mydumper/Makefile ============================================================================== --- head/databases/mydumper/Makefile Sat Sep 22 05:51:27 2012 (r304664) +++ head/databases/mydumper/Makefile Sat Sep 22 07:10:59 2012 (r304665) @@ -1,12 +1,9 @@ -# New ports collection makefile for: mydumper -# Date created: 2009-03-04 -# Whom: Gea-Suan Lin <gslin@gslin.org> -# +# Created by: Gea-Suan Lin <gslin@gslin.org> # $FreeBSD$ -# PORTNAME= mydumper PORTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://code.launchpad.net/mydumper/${PORTVERSION:R}/${PORTVERSION}/+download/ @@ -15,13 +12,12 @@ COMMENT= MySQL Data Dumper LICENSE= GPLv3 -BUILD_DEPENDS= ${LOCALBASE}/bin/cmake:${PORTSDIR}/devel/cmake LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/a//} FETCH_ARGS?= -pRr -PLIST_FILES= sbin/mydumper +PLIST_FILES= sbin/mydumper sbin/myloader USE_GNOME= glib20 USE_MYSQL= yes USE_CMAKE= yes @@ -30,6 +26,6 @@ post-patch: @${REINPLACE_CMD} -e 's|-Werror||' ${WRKSRC}/CMakeLists.txt do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/mydumper ${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/mydumper ${WRKSRC}/myloader ${PREFIX}/sbin .include <bsd.port.mk> Modified: head/databases/mydumper/pkg-descr ============================================================================== --- head/databases/mydumper/pkg-descr Sat Sep 22 05:51:27 2012 (r304664) +++ head/databases/mydumper/pkg-descr Sat Sep 22 07:10:59 2012 (r304665) @@ -1,3 +1,3 @@ How MySQL DBA & support engineer would imagine 'mysqldump' ;-) -WWW: https://launchpad.net/mydumper +WWW: https://launchpad.net/mydumper _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed, thank you!