From owner-svn-ports-head@FreeBSD.ORG Fri Jun 21 23:38:44 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]) by hub.freebsd.org (Postfix) with ESMTP id 953D4AC1; Fri, 21 Jun 2013 23:38:44 +0000 (UTC) (envelope-from bf1783@gmail.com) Received: from mail-ie0-x22b.google.com (mail-ie0-x22b.google.com [IPv6:2607:f8b0:4001:c03::22b]) by mx1.freebsd.org (Postfix) with ESMTP id 4E9C01F34; Fri, 21 Jun 2013 23:38:44 +0000 (UTC) Received: by mail-ie0-f171.google.com with SMTP id qd12so20840632ieb.16 for ; Fri, 21 Jun 2013 16:38:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=vLvwlrKqdU4vjDt8SiPMBS1xFNpCP8wukceqaapBivs=; b=It2XPb4lppuRcOsJC3NvlZduugo/EcnJSpBL2EvEEH5oQZXV7HZQGTNCBBDyEyx8Er t+KjuISuD+N6WCY+TgMhC4qeL6J/hnTbEQxSaBZKMqt+QPEmnsvKGWnrXJ/Wo1fMwu2u Y7JhsipC3OBYFujzrWrzcQLGrCkwChHUDQFidKDEtCPG5gqhnHkSVTxytBgUECDGknSX y5eCWYzRVZnsvKBIJRifCgxAF1KWz6bW/P8lPr8UK7YNRdjdmnf32MZiMH5bxKMelPzP qW5+0dYsCVGFkgWKY/sllOZo73IFcZ9NN6Sz9l7WJBG5/qPHQZSOIVFJb9cp8WyYPJTd EEfg== MIME-Version: 1.0 X-Received: by 10.42.249.72 with SMTP id mj8mr6921428icb.32.1371857923999; Fri, 21 Jun 2013 16:38:43 -0700 (PDT) Received: by 10.64.50.40 with HTTP; Fri, 21 Jun 2013 16:38:43 -0700 (PDT) In-Reply-To: <201306211155.r5LBt10K061429@svn.freebsd.org> References: <201306211155.r5LBt10K061429@svn.freebsd.org> Date: Fri, 21 Jun 2013 23:38:43 +0000 Message-ID: Subject: Re: svn commit: r321462 - head/graphics/libGLU From: "b.f." To: Niclas Zeising 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 Reply-To: bf1783@gmail.com 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, 21 Jun 2013 23:38:44 -0000 On Fri, Jun 21, 2013 at 11:55 AM, Niclas Zeising wrote: > Author: zeising > Date: Fri Jun 21 11:55:01 2013 > New Revision: 321462 > URL: http://svnweb.freebsd.org/changeset/ports/321462 > > Log: > Update to 9.0.0 > This is a stand-alone release of libGLU, no longer dependent on the rest of > MESA. > > Obtained from: xorg development repo > > Modified: > head/graphics/libGLU/Makefile > head/graphics/libGLU/pkg-plist > > Modified: head/graphics/libGLU/Makefile > ============================================================================== > --- head/graphics/libGLU/Makefile Fri Jun 21 11:29:56 2013 (r321461) > +++ head/graphics/libGLU/Makefile Fri Jun 21 11:55:01 2013 (r321462) > @@ -2,21 +2,19 @@ > # $FreeBSD$ > > PORTNAME= libGLU > -PORTVERSION= ${MESAVERSION} > -PORTREVISION= 2 > +PORTVERSION= 9.0.0 > CATEGORIES= graphics > +MASTER_SITES= ftp://ftp.freedesktop.org/pub/mesa/glu/ > +DISTNAME= glu-${PORTVERSION} > > +MAINTAINER= x11@FreeBSD.org > COMMENT= OpenGL utility library > > +USE_BZIP2= yes > +USES= pathfix > USE_GL= gl > -USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto > +GNU_CONFIGURE= yes > +CONFIGURE_ARGS= --disable-static > +USE_LDCONFIG= yes > > -INSTALL_WRKSRC= ${WRKSRC}/src/glu > -BUILD_WRKSRC= ${WRKSRC}/src/glu > - > -pre-install: > - @${MKDIR} ${PREFIX}/include/GL/ > - ${INSTALL_DATA} ${WRKSRC}/include/GL/glu*.h ${PREFIX}/include/GL/ > - > -.include "${.CURDIR}/../../graphics/libGL/bsd.mesalib.mk" > .include Now that it has a separate distfile, and doesn't use bsd.mesalib.mk, it needs a DISTINFO_FILE. Regards, Brendan