From owner-svn-ports-all@FreeBSD.ORG Sun Dec 29 10:39:24 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 B7F02C6F; Sun, 29 Dec 2013 10:39:24 +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 A3C851A02; Sun, 29 Dec 2013 10:39:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBTAdOrQ078099; Sun, 29 Dec 2013 10:39:24 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBTAdOIA078098; Sun, 29 Dec 2013 10:39:24 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201312291039.rBTAdOIA078098@svn.freebsd.org> From: Rene Ladan Date: Sun, 29 Dec 2013 10:39:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337952 - head/misc/biosfont-demos 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: Sun, 29 Dec 2013 10:39:24 -0000 Author: rene Date: Sun Dec 29 10:39:24 2013 New Revision: 337952 URL: http://svnweb.freebsd.org/changeset/ports/337952 Log: Install the showchar binary as show_char to avoid a conflict with print/psutils. Bump PORTREVISION Modified: head/misc/biosfont-demos/Makefile Modified: head/misc/biosfont-demos/Makefile ============================================================================== --- head/misc/biosfont-demos/Makefile Sun Dec 29 10:36:16 2013 (r337951) +++ head/misc/biosfont-demos/Makefile Sun Dec 29 10:39:24 2013 (r337952) @@ -3,7 +3,7 @@ PORTNAME= biosfont-demos PORTVERSION= 1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_LOCAL} #MASTER_SITES+= ftp://rene-ladan.nl/pub/distfiles/ @@ -17,14 +17,14 @@ LICENSE= BSD2CLAUSE BUILD_DEPENDS= ${LOCALBASE}/include/biosfont.h:${PORTSDIR}/sysutils/biosfont RUN_DEPENDS= /boot/modules/biosfont.ko:${PORTSDIR}/sysutils/biosfont -PLIST_FILES= bin/showchar bin/showdati +PLIST_FILES= bin/show_char bin/showdati do-build: - ${CC} ${CFLAGS} ${WRKSRC}/showchar.c -o ${WRKSRC}/showchar -I${LOCALBASE}/include + ${CC} ${CFLAGS} ${WRKSRC}/showchar.c -o ${WRKSRC}/show_char -I${LOCALBASE}/include ${CC} ${CFLAGS} ${WRKSRC}/showdati.c -o ${WRKSRC}/showdati -I${LOCALBASE}/include -lcurses do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/showchar ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/show_char ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/showdati ${STAGEDIR}${PREFIX}/bin .include