From owner-svn-ports-head@FreeBSD.ORG Sun Nov 3 16:27:46 2013 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 ESMTP id 3B933350; Sun, 3 Nov 2013 16:27:46 +0000 (UTC) (envelope-from andrej.zverev@gmail.com) Received: from mail-oa0-x235.google.com (mail-oa0-x235.google.com [IPv6:2607:f8b0:4003:c02::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D4BC325FD; Sun, 3 Nov 2013 16:27:45 +0000 (UTC) Received: by mail-oa0-f53.google.com with SMTP id n12so6291125oag.40 for ; Sun, 03 Nov 2013 08:27:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=aqZxgQY6C9cxR9CFw/M+/YsG+4LP9Rn2tyI6o6UAfOA=; b=QUBtrOsS/LxSHOX0ZS+9d6eMqsr42yb6fWuVUPdhx9Jkyb+0o5Te2Lw0E6w/89cqxs Vy1qFHgOs70r/PIFg3JDLRkIbHhxGaWyrF80Wq1uNkEDiJ+rOpwqM2bNipShF/jXR4Ga xwYuC5EP2jf8DRdNBOKexh/0Gmbih97pj3y24L0IkB4gWKEZWsNC8ZYKcBi9CSAvuEWP qz0XIaPMb0xKgfhZ35NRABycoT2EOSg5Sz5kxG/BPK3dOmTuxjddyeXtrVnbhfXjEd33 hF21tXk97cEw8BKiOW90Mgnw7eNtOWNTXD1iR4t+wKv6m8iMH2eKy+psYbOmMZzCjfFW tCsw== MIME-Version: 1.0 X-Received: by 10.60.117.225 with SMTP id kh1mr10686836oeb.15.1383496065141; Sun, 03 Nov 2013 08:27:45 -0800 (PST) Sender: andrej.zverev@gmail.com Received: by 10.182.230.131 with HTTP; Sun, 3 Nov 2013 08:27:45 -0800 (PST) In-Reply-To: <201311031621.rA3GLHqh042299@svn.freebsd.org> References: <201311031621.rA3GLHqh042299@svn.freebsd.org> Date: Sun, 3 Nov 2013 20:27:45 +0400 X-Google-Sender-Auth: daqGj2gr06yU4EsV5rsbIC0AyMU Message-ID: Subject: Re: svn commit: r332623 - head/mail/spamprobe From: Andrej Zverev To: Stefan Walter Content-Type: text/plain; charset=ISO-8859-1 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 03 Nov 2013 16:27:46 -0000 Why not such way? +.if ${OSVERSION} >= 1000024 +USE_GCC= yes +.endif On Sun, Nov 3, 2013 at 8:21 PM, Stefan Walter wrote: > Author: stefan > Date: Sun Nov 3 16:21:16 2013 > New Revision: 332623 > URL: http://svnweb.freebsd.org/changeset/ports/332623 > > Log: > - Enable staging. > - Mark as BROKEN on 10 as it doesn't currently compile with clang. > > Modified: > head/mail/spamprobe/Makefile > > Modified: head/mail/spamprobe/Makefile > ============================================================================== > --- head/mail/spamprobe/Makefile Sun Nov 3 16:08:07 2013 (r332622) > +++ head/mail/spamprobe/Makefile Sun Nov 3 16:21:16 2013 (r332623) > @@ -13,8 +13,13 @@ COMMENT= Spam detector using Bayesian an > GNU_CONFIGURE= yes > CONFIGURE_ARGS= --enable-default-8bit > > -MAN1= spamprobe.1 > -PLIST_FILES= bin/spamprobe > +PLIST_FILES= bin/spamprobe man/man1/spamprobe.1.gz > + > +.include > + > +.if ${OSVERSION} >= 1000024 > +BROKEN= does not build with clang > +.endif > > # PBL support > .if !defined(WITHOUT_PBL) > @@ -59,5 +64,4 @@ CPPFLAGS+= -I${LOCALBASE}/include > LDFLAGS+= -L${LOCALBASE}/lib > .endif > > -NO_STAGE= yes > -.include > +.include