From owner-svn-ports-head@freebsd.org Thu Feb 25 14:13:14 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07110AAF80A; Thu, 25 Feb 2016 14:13:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 CE52591F; Thu, 25 Feb 2016 14:13:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1PEDCgI059828; Thu, 25 Feb 2016 14:13:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1PEDC3f059827; Thu, 25 Feb 2016 14:13:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201602251413.u1PEDC3f059827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 25 Feb 2016 14:13:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409517 - head/net-im/profanity 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.20 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, 25 Feb 2016 14:13:14 -0000 Author: amdmi3 Date: Thu Feb 25 14:13:12 2016 New Revision: 409517 URL: https://svnweb.freebsd.org/changeset/ports/409517 Log: - Clarify license - Specify libotr.so version to differentiate security/libotr3 and security/libotr - Switch to options helpers Approved by: portmgr blanket Modified: head/net-im/profanity/Makefile Modified: head/net-im/profanity/Makefile ============================================================================== --- head/net-im/profanity/Makefile Thu Feb 25 13:48:06 2016 (r409516) +++ head/net-im/profanity/Makefile Thu Feb 25 14:13:12 2016 (r409517) @@ -8,27 +8,24 @@ MASTER_SITES= http://www.profanity.im/ MAINTAINER= arved@FreeBSD.org COMMENT= Console based XMPP client -LICENSE= GPLv3 +LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libstrophe.so:${PORTSDIR}/net-im/libstrophe \ libglib-2.0.so:${PORTSDIR}/devel/glib20 \ libcurl.so:${PORTSDIR}/ftp/curl \ - libotr.so:${PORTSDIR}/security/libotr3 \ + libotr.so.2:${PORTSDIR}/security/libotr3 \ libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ libgpgme.so:${PORTSDIR}/security/gpgme -OPTIONS_DEFINE=NOTIFY USES= ncurses pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-otr CONFIGURE_ENV= LIBS="${CFLAGS} -lcrypto" -.include +OPTIONS_DEFINE= NOTIFY -.if ${PORT_OPTIONS:MNOTIFY} -LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify -CONFIGURE_ARGS+= --enable-notifications -.endif +NOTIFY_LIB_DEPENDS= libnotify.so:${PORTSDIR}/devel/libnotify +NOTIFY_CONFIGURE_ENABLE=notifications .include