From owner-svn-ports-head@FreeBSD.ORG Fri Sep 19 12:40:53 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 99C22C34; Fri, 19 Sep 2014 12:40:53 +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 854F2CEC; Fri, 19 Sep 2014 12:40:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8JCerVG099655; Fri, 19 Sep 2014 12:40:53 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8JCerwd099654; Fri, 19 Sep 2014 12:40:53 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201409191240.s8JCerwd099654@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 19 Sep 2014 12:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368555 - head/mail/opensmtpd 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: Fri, 19 Sep 2014 12:40:53 -0000 Author: tijl Date: Fri Sep 19 12:40:53 2014 New Revision: 368555 URL: http://svnweb.freebsd.org/changeset/ports/368555 QAT: https://qat.redports.org/buildarchive/r368555/ Log: - Drop dependency on autoconf and automake - Use correct form of OPTIONS_SUB - Remove FreeBSD 7 support - Remove post-deinstall (handled by pkg) Modified: head/mail/opensmtpd/Makefile Modified: head/mail/opensmtpd/Makefile ============================================================================== --- head/mail/opensmtpd/Makefile Fri Sep 19 12:38:07 2014 (r368554) +++ head/mail/opensmtpd/Makefile Fri Sep 19 12:40:53 2014 (r368555) @@ -24,7 +24,7 @@ OPTIONS_DEFAULT= CA_BUNDLE PAM CA_BUNDLE_DESC= Install CA bundle for OpenSSL USES= libtool -USE_AUTOTOOLS= autoconf:env automake:env +USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libevent-dir=${LOCALBASE} --sysconfdir=${PREFIX}/etc/mail/ \ --with-mailwrapper @@ -37,7 +37,7 @@ CONFLICTS_INSTALL= postfix-[0-9]* sendma USERS= _smtpd _smtpq GROUPS= _smtpd -OPTIONS_SUB= MYSQL SQLITE PGSQL LDAP REDIS +OPTIONS_SUB= yes CA_BUNDLE_CONFIGURE_ON= --with-ca-file=${LOCALBASE}/share/certs/ca-root-nss.crt CA_BUNDLE_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss @@ -62,16 +62,4 @@ PAM_CONFIGURE_ON= --with-pam --with-pam- REDIS_LIB_DEPENDS= libhiredis.so:${PORTSDIR}/databases/hiredis REDIS_CONFIGURE_ON= --with-experimental-redis -.include - -USE_OPENSSL= yes - -# FreeBSD 7.3 and earlier need to use OpenSSL from ports -.if ${OSVERSION} < 704000 -WITH_OPENSSL_PORT= yes -.endif - -post-deinstall: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-DEINSTALL - .include