From bsd-src@helfman.org  Wed Jan 22 00:50:39 2014
Return-Path: <bsd-src@helfman.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 8D374944
	for <bug-followup@freebsd.org>; Wed, 22 Jan 2014 00:50:39 +0000 (UTC)
Received: from mail-pa0-f52.google.com (mail-pa0-f52.google.com [209.85.220.52])
	(using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id 6338C1A77
	for <bug-followup@freebsd.org>; Wed, 22 Jan 2014 00:50:39 +0000 (UTC)
Received: by mail-pa0-f52.google.com with SMTP id bj1so7706991pad.11
        for <bug-followup@freebsd.org>; Tue, 21 Jan 2014 16:50:32 -0800 (PST)
Received: by 10.70.78.130 with HTTP; Tue, 21 Jan 2014 16:50:31 -0800 (PST)
Message-Id: <CAMuy=+j2VQ8TXLG8zcZ-W5HMKOS_8jvgpH-xcj4wma-uVxctow@mail.gmail.com>
Date: Tue, 21 Jan 2014 16:50:31 -0800
From: Jason Helfman <jgh@FreeBSD.org>
Sender: bsd-src@helfman.org
To: bug-followup <bug-followup@freebsd.org>
Subject: Re: 185745

>Number:         185979
>Category:       ports
>Synopsis:       Re: ports/185745
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jan 22 01:00:00 UTC 2014
>Closed-Date:    Wed Jan 22 18:56:09 UTC 2014
>Last-Modified:  Wed Jan 22 18:56:09 UTC 2014
>Originator:     
>Release:        
>Organization:
>Environment:
>Description:
 --bcaec520e9a90ee4d804f084838b
 Content-Type: text/plain; charset=ISO-8859-1
 
 ---------- Forwarded message ----------
 From: Jason Helfman <jgh@freebsd.org>
 Date: Tue, Jan 21, 2014 at 4:16 PM
 Subject: svn commit: r340676 - in head/devel/libvirt: . files
 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
 
 
 Author: jgh
 Date: Wed Jan 22 00:16:44 2014
 New Revision: 340676
 URL: http://svnweb.freebsd.org/changeset/ports/340676
 QAT: https://qat.redports.org/buildarchive/r340676/
 
 Log:
   - add rc.d script for libvirtd daemon control [1]
   - rename option description for qemu
   - fix qemu dependencies for libvirtd operations
   - strip libraries
   - add pkg-message
 
   Many thanks to roman@ for testing!
 
   PR:           168656 [1]
 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=168656
   Submitted by: dpejesh@yahoo.com
 
 Added:
   head/devel/libvirt/files/
   head/devel/libvirt/files/libvirtd.in   (contents, props changed)
   head/devel/libvirt/pkg-message   (contents, props changed)
 Modified:
   head/devel/libvirt/Makefile
 
 Modified: head/devel/libvirt/Makefile
 ==============================================================================
 --- head/devel/libvirt/Makefile Tue Jan 21 23:47:07 2014        (r340675)
 +++ head/devel/libvirt/Makefile Wed Jan 22 00:16:44 2014        (r340676)
 @@ -3,6 +3,7 @@
 
  PORTNAME=      libvirt
  PORTVERSION=   1.2.1
 +PORTREVISION=  1
  CATEGORIES=    devel
  MASTER_SITES=  http://libvirt.org/sources/ \
                 ftp://libvirt.org/libvirt/
 @@ -19,19 +20,24 @@ LIB_DEPENDS=        libcurl.so:${PORTSDIR}/ftp/
                 libssh2.so:${PORTSDIR}/security/libssh2
 
  OPTIONS_DEFINE=        QEMU DOCS NLS
 -QEMU_DESC=     QEMU bindings
 +QEMU_DESC=     QEMU driver
 
  OPTIONS_SUB=   yes
 
 -QEMU_CONFIGURE_WITH=   qemu
 +QEMU_CONFIGURE_WITH=   qemu yajl
 +QEMU_CFLAGS=   -I${LOCALBASE}/include
 +QEMU_LIB_DEPENDS=      libyajl.so:${PORTSDIR}/devel/yajl
 +QEMU_RUN_DEPENDS=      dmidecode:${PORTSDIR}/sysutils/dmidecode \
 +                       qemu-io:${PORTSDIR}/emulators/qemu-devel
 
  NLS_USES=      gettext
  NLS_CONFIGURE_ENABLE=  nls
  NLS_CONFIGURE_ON=      --with-libintl-prefix=${LOCALBASE}
 
 +USE_RC_SUBR=   libvirtd
 +
  GNU_CONFIGURE= yes
  CONFIGURE_ARGS=        --without-sasl \
 -               --without-yajl \
                 --without-avahi \
                 --without-polkit \
                 --without-hal \
 @@ -59,6 +65,13 @@ SHLIB_VER=   1002
  PLIST_SUB=     PORTVERSION="-${PORTVERSION}" \
                 SHLIB_VER=${SHLIB_VER}
  PORTDOCS=      *
 +STRIP_FILES=   libvirt.so.${SHLIB_VER} \
 +               libvirt-qemu.so.${SHLIB_VER} \
 +               libvirt-lxc.so.${SHLIB_VER} \
 +               libvirt/lock-driver/lockd.so \
 +               libvirt/connection-driver/libvirt_driver_vbox.so \
 +               libvirt/connection-driver/libvirt_driver_secret.so \
 +               libvirt/connection-driver/libvirt_driver_storage.so
 
  .include <bsd.port.options.mk>
 
 @@ -90,12 +103,14 @@ post-install:
                         ${ECHO_MSG} "   Preserving local configuration
 file: ${STAGEDIR}${ETCDIR}/$${configuration}.conf"; \
         fi; \
         done
 -.if ${PORT_OPTIONS:MDOCS}
         @${MKDIR} ${STAGEDIR}${DOCSDIR}
  .for doc in AUTHORS ChangeLog INSTALL NEWS README TODO
         ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
  .endfor
 -.endif
 +
 +.for lib in ${STRIP_FILES}
 +       @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${lib}
 +.endfor
 
  regression-test: build
         @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} check
 
 Added: head/devel/libvirt/files/libvirtd.in
 ==============================================================================
 --- /dev/null   00:00:00 1970   (empty, because file is newly added)
 +++ head/devel/libvirt/files/libvirtd.in        Wed Jan 22 00:16:44 2014
      (r340676)
 @@ -0,0 +1,31 @@
 +#!/bin/sh
 +
 +# $FreeBSD$
 +#
 +# PROVIDE: libvirtd
 +# REQUIRE: LOGIN
 +# KEYWORD: shutdown
 +#
 +# Add the following line to /etc/rc.conf[.local] to enable libvirtd.
 +#
 +# libvirtd_enable (bool):       Set to 'YES' to enable
 +#                               Default: NO
 +#
 +
 +. /etc/rc.subr
 +
 +name=libvirtd
 +rcvar=libvirtd_enable
 +
 +load_rc_config $name
 +
 +command=%%PREFIX%%/sbin/libvirtd
 +pidfile=%%LOCALBASE%%/var/run/${name}.pid
 +
 +command_args="--daemon --pid-file=${pidfile}"
 +
 +: ${libvirtd_enable:="NO"}
 +
 +PATH="${PATH}:/usr/local/sbin:/usr/local/bin"
 +
 +run_rc_command "$1"
 
 Added: head/devel/libvirt/pkg-message
 ==============================================================================
 --- /dev/null   00:00:00 1970   (empty, because file is newly added)
 +++ head/devel/libvirt/pkg-message      Wed Jan 22 00:16:44 2014
  (r340676)
 @@ -0,0 +1,3 @@
 +
 +To enable libvirtd please add libvirtd_enable="YES" to
 +/etc/rc.conf.
 
 
 
 
 -- 
 Jason Helfman          | FreeBSD Committer
 jgh@FreeBSD.org     | http://people.freebsd.org/~jgh  | The Power to Serve
 
 --bcaec520e9a90ee4d804f084838b--
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: linimon 
State-Changed-When: Wed Jan 22 18:54:30 UTC 2014 
State-Changed-Why:  
Misfiled followup to ports/185745, already committed. 


Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Wed Jan 22 18:54:30 UTC 2014 
Responsible-Changed-Why:  

http://www.freebsd.org/cgi/query-pr.cgi?pr=185979 
>Unformatted:
