From owner-svn-ports-head@FreeBSD.ORG Wed Sep 17 13:56:17 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 19E1FC64; Wed, 17 Sep 2014 13:56:17 +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 DF2FC9E; Wed, 17 Sep 2014 13:56:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8HDuGXq066164; Wed, 17 Sep 2014 13:56:16 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8HDuGu2066163; Wed, 17 Sep 2014 13:56:16 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201409171356.s8HDuGu2066163@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 17 Sep 2014 13:56:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368374 - head/devel/uatraits 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.18-1 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: Wed, 17 Sep 2014 13:56:17 -0000 Author: tijl Date: Wed Sep 17 13:56:16 2014 New Revision: 368374 URL: http://svnweb.freebsd.org/changeset/ports/368374 QAT: https://qat.redports.org/buildarchive/r368374/ Log: Convert to USES=autoreconf and USES=python Modified: head/devel/uatraits/Makefile Modified: head/devel/uatraits/Makefile ============================================================================== --- head/devel/uatraits/Makefile Wed Sep 17 13:40:22 2014 (r368373) +++ head/devel/uatraits/Makefile Wed Sep 17 13:56:16 2014 (r368374) @@ -10,34 +10,21 @@ MASTER_SITES= http://people.freebsd.org/ MAINTAINER= demon@FreeBSD.org COMMENT= User-Agent detection library -BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf \ - automake:${PORTSDIR}/devel/automake \ - libtool:${PORTSDIR}/devel/libtool LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs \ libpcre.so:${PORTSDIR}/devel/pcre \ libxml2.so:${PORTSDIR}/textproc/libxml2 -USES= libtool pkgconfig +USES= autoreconf libtool pkgconfig python GNU_CONFIGURE= yes -USE_PYTHON= yes USE_OPENSSL= yes USE_LDCONFIG= yes -.include +CONFIGURE_ARGS= --with-boost-prefix=${LOCALBASE} \ + --with-pcre-prefix=${LOCALBASE} \ + --enable-python --disable-perl --disable-tests \ + --disable-java --disable-nodejs +CONFIGURE_ENV= crypto_CFLAGS="-I${OPENSSLINC}" \ + crypto_LIBS="-L${OPENSSLLIB} -lcrypto" +CPPFLAGS+= -I${LOCALBASE}/include -.if exists(${PYTHON_CMD}-config) -PYLIBS!= ${PYTHON_CMD}-config --libs -.endif -CONFIGURE_ARGS+= --with-boost-prefix=${LOCALBASE} \ - --with-pcre-prefix=${LOCALBASE} \ - --enable-python --disable-perl --disable-tests \ - --disable-java --disable-nodejs -CPPFLAGS+= "-I${LOCALBASE}/include" -CONFIGURE_ENV+= crypto_CFLAGS="-I${OPENSSLINC}" \ - crypto_LIBS="-L${OPENSSLLIB} -lcrypto" \ - PYTHON_LIBS="${PYLIBS} -L${LOCALBASE}/lib" - -pre-configure: - cd ${WRKSRC} && ./autogen.sh - -.include +.include