From owner-svn-ports-head@FreeBSD.ORG Thu Oct 31 03:59:58 2013 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 ESMTP id 714215DD; Thu, 31 Oct 2013 03:59:58 +0000 (UTC) (envelope-from danfe@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4E3BD2C47; Thu, 31 Oct 2013 03:59:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9V3xwdM093874; Thu, 31 Oct 2013 03:59:58 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9V3xvNU093871; Thu, 31 Oct 2013 03:59:57 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201310310359.r9V3xvNU093871@svn.freebsd.org> From: Alexey Dokuchaev Date: Thu, 31 Oct 2013 03:59:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332199 - head/comms/libimobiledevice 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.14 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: Thu, 31 Oct 2013 03:59:58 -0000 Author: danfe Date: Thu Oct 31 03:59:57 2013 New Revision: 332199 URL: http://svnweb.freebsd.org/changeset/ports/332199 Log: None of the binaries installed by comms/libimobiledevice are actually linked to gnutls/gcrypt/tasn1, while they are explicitly listed in the LIB_DEPENDS, remove them. Judging from configure script, GnuTLS is used only when OpenSSL is explicitly disabled with --disable-openssl; Gentoo ebuild agrees. OpenSSL is preferred, and is our standard SSL provider. If GnuTLS is required for some special feature of libimobiledevice, it can be introduced as an OPTION. While here: stagify the port, use modern LIB_DEPENDS syntax. Approved by: maintainer (avilla; timeout since May 16th) Modified: head/comms/libimobiledevice/Makefile head/comms/libimobiledevice/pkg-plist Modified: head/comms/libimobiledevice/Makefile ============================================================================== --- head/comms/libimobiledevice/Makefile Thu Oct 31 02:59:17 2013 (r332198) +++ head/comms/libimobiledevice/Makefile Thu Oct 31 03:59:57 2013 (r332199) @@ -22,11 +22,8 @@ LDFLAGS+= -L${LOCALBASE}/lib .if ${SLAVE_PORT} == "no" -LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls \ - tasn1:${PORTSDIR}/security/libtasn1 \ - gcrypt:${PORTSDIR}/security/libgcrypt \ - plist:${PORTSDIR}/devel/libplist \ - usbmuxd:${PORTSDIR}/comms/usbmuxd +LIB_DEPENDS= libplist.so:${PORTSDIR}/devel/libplist \ + libusbmuxd.so:${PORTSDIR}/comms/usbmuxd USE_GNOME= glib20 CONFIGURE_ARGS+=--without-cython @@ -35,14 +32,7 @@ USE_LDCONFIG= yes PORTDOCS= AUTHORS NEWS README -MAN1= idevice_id.1 idevicebackup.1 idevicebackup2.1 idevicedate.1 \ - idevicedebugserverproxy.1 idevicediagnostics.1 \ - ideviceenterrecovery.1 ideviceimagemounter.1 ideviceinfo.1 \ - idevicepair.1 ideviceprovision.1 idevicescreenshot.1 \ - idevicesyslog.1 - -NO_STAGE= yes -.include +OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e 's, *@ssl_requires@,,' \ @@ -51,10 +41,8 @@ post-patch: ${WRKSRC}/Makefile.in post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .endif # ${SLAVE_PORT} == "no" Modified: head/comms/libimobiledevice/pkg-plist ============================================================================== --- head/comms/libimobiledevice/pkg-plist Thu Oct 31 02:59:17 2013 (r332198) +++ head/comms/libimobiledevice/pkg-plist Thu Oct 31 03:59:57 2013 (r332199) @@ -34,4 +34,17 @@ lib/libimobiledevice.la lib/libimobiledevice.so lib/libimobiledevice.so.4 libdata/pkgconfig/libimobiledevice-1.0.pc +man/man1/idevice_id.1.gz +man/man1/idevicebackup.1.gz +man/man1/idevicebackup2.1.gz +man/man1/idevicedate.1.gz +man/man1/idevicedebugserverproxy.1.gz +man/man1/idevicediagnostics.1.gz +man/man1/ideviceenterrecovery.1.gz +man/man1/ideviceimagemounter.1.gz +man/man1/ideviceinfo.1.gz +man/man1/idevicepair.1.gz +man/man1/ideviceprovision.1.gz +man/man1/idevicescreenshot.1.gz +man/man1/idevicesyslog.1.gz @dirrm include/libimobiledevice