From owner-svn-ports-head@FreeBSD.ORG Wed Nov 13 14:36:23 2013 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 4CC708D8; Wed, 13 Nov 2013 14:36:23 +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 3B41C261A; Wed, 13 Nov 2013 14:36:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rADEaNpX062757; Wed, 13 Nov 2013 14:36:23 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rADEaMfj062755; Wed, 13 Nov 2013 14:36:22 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201311131436.rADEaMfj062755@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Wed, 13 Nov 2013 14:36:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333693 - head/games/xglk 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.16 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: Wed, 13 Nov 2013 14:36:23 -0000 Author: danilo Date: Wed Nov 13 14:36:22 2013 New Revision: 333693 URL: http://svnweb.freebsd.org/changeset/ports/333693 Log: - Convert LIB_DEPENDS to new syntax - Use space in WWW - Add stage support Modified: head/games/xglk/Makefile head/games/xglk/pkg-descr Modified: head/games/xglk/Makefile ============================================================================== --- head/games/xglk/Makefile Wed Nov 13 14:32:26 2013 (r333692) +++ head/games/xglk/Makefile Wed Nov 13 14:36:22 2013 (r333693) @@ -14,18 +14,18 @@ COMMENT= X Windows Implementation of the WRKSRC= ${WRKDIR}/${PORTNAME} -LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg png15:${PORTSDIR}/graphics/png +LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png USE_XORG= x11 MAKE_ENV+= AR=${AR} RANLIB=${RANLIB} ECHO=${ECHO} RM=${RM} -NO_STAGE= yes do-install: - ${MKDIR} ${PREFIX}/include/xglk - ${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/xglk/ - ${INSTALL_DATA} ${WRKSRC}/libxglk.a ${PREFIX}/lib/ - ${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/Make.xglk ${DATADIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/include/xglk + ${INSTALL_DATA} ${WRKSRC}/*.h ${STAGEDIR}${PREFIX}/include/xglk/ + ${INSTALL_DATA} ${WRKSRC}/libxglk.a ${STAGEDIR}${PREFIX}/lib/ + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/Make.xglk ${STAGEDIR}${DATADIR} .include Modified: head/games/xglk/pkg-descr ============================================================================== --- head/games/xglk/pkg-descr Wed Nov 13 14:32:26 2013 (r333692) +++ head/games/xglk/pkg-descr Wed Nov 13 14:36:22 2013 (r333693) @@ -5,4 +5,4 @@ Glk API which this implements: version 0 Designed by Andrew Plotkin http://www.eblong.com/zarf/glk/index.html -WWW: http://www.ifarchive.org/if-archive/programming/glk/implementations/ +WWW: http://www.ifarchive.org/if-archive/programming/glk/implementations/