From owner-svn-ports-head@FreeBSD.ORG Thu Jan 30 05:04:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 33C1C47B; Thu, 30 Jan 2014 05:04:11 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 061F511DA; Thu, 30 Jan 2014 05:04:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0U54A7S041047; Thu, 30 Jan 2014 05:04:10 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0U54Ai7041046; Thu, 30 Jan 2014 05:04:10 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401300504.s0U54Ai7041046@svn.freebsd.org> From: Alexey Dokuchaev Date: Thu, 30 Jan 2014 05:04:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341801 - head/games/adgali 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.17 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, 30 Jan 2014 05:04:11 -0000 Author: danfe Date: Thu Jan 30 05:04:10 2014 New Revision: 341801 URL: http://svnweb.freebsd.org/changeset/ports/341801 QAT: https://qat.redports.org/buildarchive/r341801/ Log: - Stagify, drop indefinite article from COMMENT, modernize LID_DEPENDS syntax - Remove the check for a long-time unsupported "alpha" architecture - Check if libexecinfo.so is available in the base; convert USE_GMAKE, etc. Modified: head/games/adgali/Makefile Modified: head/games/adgali/Makefile ============================================================================== --- head/games/adgali/Makefile Thu Jan 30 03:34:12 2014 (r341800) +++ head/games/adgali/Makefile Thu Jan 30 05:04:10 2014 (r341801) @@ -1,4 +1,4 @@ -# Created by: ijliao +# Created by: Ying-Chieh Liao # $FreeBSD$ PORTNAME= adgali @@ -8,39 +8,33 @@ CATEGORIES= games devel MASTER_SITES= http://adgali.apiou.org/download/ MAINTAINER= gahr@FreeBSD.org -COMMENT= An open source game library useful for 2D game development +COMMENT= Open source game library useful for 2D game development LICENSE= GPLv2 -LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - tiff.4:${PORTSDIR}/graphics/tiff \ - freetype.9:${PORTSDIR}/print/freetype2 \ - execinfo.1:${PORTSDIR}/devel/libexecinfo +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libfreetype.so:${PORTSDIR}/print/freetype2 +.if !exists(/usr/include/execinfo.h) +LIB_DEPENDS+= libexecinfo.so:${PORTSDIR}/devel/libexecinfo +.endif +USES= gmake USE_AUTOTOOLS= libtool USE_BZIP2= yes +USE_LDCONFIG= yes USE_SDL= sdl USE_XORG= xpm -USE_GMAKE= yes GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo CONFIGURE_ARGS= --enable-compile-optim=no -USE_LDCONFIG= yes -NO_STAGE= yes -.include - -.if ${ARCH} == "alpha" -BROKEN= Configure fails -.endif +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC}/doc/html && ${FIND} . | \ - ${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/html && ${FIND} . | ${CPIO} -pdm -L -R \ + ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR}) -.include +.include