From owner-svn-ports-all@freebsd.org Sun Jan 14 20:22:38 2018 Return-Path: Delivered-To: svn-ports-all@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 4945AEB50C7; Sun, 14 Jan 2018 20:22:38 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24BFD6B27E; Sun, 14 Jan 2018 20:22:38 +0000 (UTC) (envelope-from tijl@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6620826843; Sun, 14 Jan 2018 20:22:37 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0EKMbcj032800; Sun, 14 Jan 2018 20:22:37 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0EKMb5p032799; Sun, 14 Jan 2018 20:22:37 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201801142022.w0EKMb5p032799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 14 Jan 2018 20:22:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458998 - in head/mail/qpopper: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: in head/mail/qpopper: . files X-SVN-Commit-Revision: 458998 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jan 2018 20:22:38 -0000 Author: tijl Date: Sun Jan 14 20:22:37 2018 New Revision: 458998 URL: https://svnweb.freebsd.org/changeset/ports/458998 Log: Patch configure instead of configure.in so USE_AUTOTOOLS can be removed. Deleted: head/mail/qpopper/files/patch-configure.in Modified: head/mail/qpopper/Makefile Modified: head/mail/qpopper/Makefile ============================================================================== --- head/mail/qpopper/Makefile Sun Jan 14 19:39:15 2018 (r458997) +++ head/mail/qpopper/Makefile Sun Jan 14 20:22:37 2018 (r458998) @@ -13,10 +13,10 @@ MAINTAINER= bc979@lafn.org COMMENT= Berkeley POP 3 server (now maintained by Qualcomm) USES= compiler:features -USE_AUTOTOOLS= autoconf +GNU_CONFIGURE= yes CONFIGURE_ENV= OS_DEFS="-DSETPROCTITLE ${OS_DEFS}" CONFIGURE_ARGS= --enable-nonauth-file=${POPUSERS_FILE} \ - --without-gdbm \ + --without-gdbm ac_cv_header_gdbm_h=no \ --enable-keep-temp-drop LIBS+= -L${LOCALBASE}/lib -lcrypt -lmd -lutil @@ -124,13 +124,13 @@ CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} post-patch: .if ${COMPILER_TYPE} == clang - @${REINPLACE_CMD} -e 's|-freg-struct-return||' ${WRKSRC}/configure.in + @${REINPLACE_CMD} -e 's|-freg-struct-return||' ${WRKSRC}/configure .endif @${RM} ${WRKSRC}/popper/md5.h @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/man/* @${REINPLACE_CMD} -e \ 's|\$${sbindir}/sendmail|${LOCALBASE}/sbin/sendmail|g' \ - ${WRKSRC}/configure.in + ${WRKSRC}/configure .if ${PORT_OPTIONS:MPOPPASSD} @${REINPLACE_CMD} -e 's|/usr/bin/smbpasswd|${LOCALBASE}/bin/smbpasswd|' \ ${WRKSRC}/password/poppassd.c