From owner-svn-ports-all@FreeBSD.ORG Wed Oct 16 12:55:26 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 ESMTP id 5C0F5229; Wed, 16 Oct 2013 12:55:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) 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 4507D2B30; Wed, 16 Oct 2013 12:55:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9GCtQ22015636; Wed, 16 Oct 2013 12:55:26 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9GCtQCR015635; Wed, 16 Oct 2013 12:55:26 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201310161255.r9GCtQCR015635@svn.freebsd.org> From: Dmitry Marakasov Date: Wed, 16 Oct 2013 12:55:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330502 - head/games/penguin-command 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.14 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: Wed, 16 Oct 2013 12:55:26 -0000 Author: amdmi3 Date: Wed Oct 16 12:55:25 2013 New Revision: 330502 URL: http://svnweb.freebsd.org/changeset/ports/330502 Log: - Support staging - Add DESKTOP_ENTRIES - Use new LIB_DEPENDS syntax Deleted: head/games/penguin-command/pkg-plist Modified: head/games/penguin-command/Makefile Modified: head/games/penguin-command/Makefile ============================================================================== --- head/games/penguin-command/Makefile Wed Oct 16 12:49:27 2013 (r330501) +++ head/games/penguin-command/Makefile Wed Oct 16 12:55:25 2013 (r330502) @@ -10,18 +10,26 @@ MASTER_SITES= SF MAINTAINER= amdmi3@FreeBSD.org COMMENT= A clone of the classic game Missile Command -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - jpeg:${PORTSDIR}/graphics/jpeg +LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png \ + libjpeg.so:${PORTSDIR}/graphics/jpeg USE_SDL= mixer image sdl GNU_CONFIGURE= yes -MAN6= penguin-command.6 penguin-command.ja.6 +PLIST_FILES= bin/${PORTNAME} \ + man/man6/penguin-command.6.gz \ + man/man6/penguin-command.ja.6.gz +PORTDATA= * + +DESKTOP_ENTRIES="Penguin Command" \ + "${COMMENT}" \ + "${DATADIR}/gfx/icon.xpm" \ + "${PORTNAME}" \ + "Game;ArcadeGame;" \ + "" -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} 's| -lSDL | |g' ${WRKSRC}/configure - @${REINPLACE_CMD} 's|LIBS="-lSDL_image|LIBS="-lSDL_image $$SDL_LIBS|g' \ - ${WRKSRC}/configure + @${REINPLACE_CMD} 's|LIBS="-lSDL_image|LIBS="-lSDL_image $$SDL_LIBS|g; \ + s| -lSDL | |g' ${WRKSRC}/configure .include