From owner-svn-ports-head@FreeBSD.ORG Mon Aug 11 16:52:39 2014 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 ESMTPS id 7B1FD398 for ; Mon, 11 Aug 2014 16:52:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F7982446 for ; Mon, 11 Aug 2014 16:52:39 +0000 (UTC) Received: from tijl (uid 1230) (envelope-from tijl@FreeBSD.org) id 23bb by svn.freebsd.org (DragonFly Mail Agent v0.9+); Mon, 11 Aug 2014 16:52:38 +0000 From: Tijl Coosemans Date: Mon, 11 Aug 2014 16:52:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364626 - in head/comms: libimobiledevice py-libimobiledevice X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e8f4d7.23bb.7b169832@svn.freebsd.org> 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: Mon, 11 Aug 2014 16:52:39 -0000 Author: tijl Date: Mon Aug 11 16:52:38 2014 New Revision: 364626 URL: http://svnweb.freebsd.org/changeset/ports/364626 QAT: https://qat.redports.org/buildarchive/r364626/ Log: - Switch back to CFLAGS/LDFLAGS to fix configure in py-libimobiledevice after r364564 [1] - Convert to USES=libtool Reported by: antoine [1] Modified: head/comms/libimobiledevice/Makefile head/comms/libimobiledevice/pkg-plist head/comms/py-libimobiledevice/Makefile Modified: head/comms/libimobiledevice/Makefile ============================================================================== --- head/comms/libimobiledevice/Makefile Mon Aug 11 16:27:51 2014 (r364625) +++ head/comms/libimobiledevice/Makefile Mon Aug 11 16:52:38 2014 (r364626) @@ -2,7 +2,7 @@ PORTNAME= libimobiledevice PORTVERSION= 1.1.5 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= comms MASTER_SITES= http://www.${PORTNAME}.org/downloads/ @@ -13,13 +13,14 @@ LICENSE?= LGPL21 SLAVE_PORT?= no -USES= pathfix pkgconfig tar:bzip2 +USES= libtool pathfix pkgconfig tar:bzip2 USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= openssl_CFLAGS="-I${OPENSSLINC}" \ openssl_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip .if ${SLAVE_PORT} == "no" Modified: head/comms/libimobiledevice/pkg-plist ============================================================================== --- head/comms/libimobiledevice/pkg-plist Mon Aug 11 16:27:51 2014 (r364625) +++ head/comms/libimobiledevice/pkg-plist Mon Aug 11 16:52:38 2014 (r364626) @@ -30,9 +30,9 @@ include/libimobiledevice/sbservices.h include/libimobiledevice/screenshotr.h include/libimobiledevice/webinspector.h lib/libimobiledevice.a -lib/libimobiledevice.la lib/libimobiledevice.so lib/libimobiledevice.so.4 +lib/libimobiledevice.so.4.0.1 libdata/pkgconfig/libimobiledevice-1.0.pc man/man1/idevice_id.1.gz man/man1/idevicebackup.1.gz Modified: head/comms/py-libimobiledevice/Makefile ============================================================================== --- head/comms/py-libimobiledevice/Makefile Mon Aug 11 16:27:51 2014 (r364625) +++ head/comms/py-libimobiledevice/Makefile Mon Aug 11 16:52:38 2014 (r364626) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= comms python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -21,11 +21,12 @@ BUILD_WRKSRC= ${WRKSRC}/cython INSTALL_WRKSRC= ${BUILD_WRKSRC} PLIST_FILES= ${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/imobiledevice.a \ - ${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/imobiledevice.la \ ${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/imobiledevice.so post-patch: - @${REINPLACE_CMD} -e 's,../src/libimobiledevice.la,${LOCALBASE}/lib/libimobiledevice.la,' \ + @${REINPLACE_CMD} \ + -e 's,../src/libimobiledevice.la,-limobiledevice,' \ + -e 's/$$(imobiledevice_la_DEPENDENCIES)//' \ ${BUILD_WRKSRC}/Makefile.in .include "${MASTERDIR}/Makefile"