From owner-svn-ports-all@FreeBSD.ORG Thu Dec 26 22:28:11 2013 Return-Path: Delivered-To: svn-ports-all@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 03316D71; Thu, 26 Dec 2013 22:28: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 C954D1737; Thu, 26 Dec 2013 22:28:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBQMSAiD006055; Thu, 26 Dec 2013 22:28:10 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBQMSAGp006054; Thu, 26 Dec 2013 22:28:10 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201312262228.rBQMSAGp006054@svn.freebsd.org> From: Rusmir Dusko Date: Thu, 26 Dec 2013 22:28:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337627 - head/games/tux-aqfh X-SVN-Group: ports-head 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.17 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: Thu, 26 Dec 2013 22:28:11 -0000 Author: nemysis Date: Thu Dec 26 22:28:10 2013 New Revision: 337627 URL: http://svnweb.freebsd.org/changeset/ports/337627 Log: - Change master sites - USES gmake instead of USE_GMAKE - Change Desktop entry file - Support STAGEDIR - Disable all warnings with -w Approved by: pawel / wg (mentors, implicit) Modified: head/games/tux-aqfh/Makefile Modified: head/games/tux-aqfh/Makefile ============================================================================== --- head/games/tux-aqfh/Makefile Thu Dec 26 22:21:46 2013 (r337626) +++ head/games/tux-aqfh/Makefile Thu Dec 26 22:28:10 2013 (r337627) @@ -6,7 +6,7 @@ PORTVERSION= 1.0.14 PORTREVISION= 8 CATEGORIES= games MASTER_SITES= SF/tuxaqfh/tuxaqfh/${PORTVERSION}-classic \ - SF/nemysisfreebsdp/:icons + SF/nemysisfreebsdp/${CATEGORIES}/:icons DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ ${PORTNAME}.png:icons EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} @@ -18,10 +18,11 @@ LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib +USES= gmake USE_GL= glut -USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-plib=${LOCALBASE} +#USE_GCC= yes CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS+= -L${LOCALBASE}/lib -lusbhid ${PTHREAD_LIBS} @@ -35,18 +36,15 @@ DOCSRCDIR2= ${WRKSRC}/doc DOCSDIR2= ${DOCSDIR}/doc DOC_FILES2= *.png *.html -DESKTOP_ENTRIES="Tuxedo The Penguin: A Quest for Herring" "${COMMENT}" ${PORTNAME} \ - "${PORTNAME}" "Game;ArcadeGame;" false +DESKTOP_ENTRIES="Tuxedo The Penguin: A Quest for Herring" "" ${PORTNAME} \ + "${PORTNAME}" "Game;SportsGame;" "" OPTIONS_DEFINE= DOCS -NO_STAGE= yes -.include - post-patch: @${REINPLACE_CMD} -e \ 's|-lplibul|-lplibul -lplibjs| ; \ - s|-O6||g ; \ + s|-O6 -Wall|-w|g ; \ s|-lpthread|| ; \ s|datadir/games|datadir|' ${WRKSRC}/configure @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ @@ -56,13 +54,12 @@ post-patch: ${WRKSRC}/Makefile.in post-install: - ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps + ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${DOCSDIR} - @${MKDIR} ${DOCSDIR2} - ${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${DOCSDIR2} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR2} + ${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2} .include