1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00

Add port graphics/lcdtest:

lcdtest is a utility to display LCD monitor test patterns.  It may be
useful for adjusting the pixel clock frequency and phase on LCD
monitors when using analog inputs, and for finding pixels that are
stuck on or off.

WWW: http://www.brouhaha.com/~eric/software/lcdtest/
Author: Eric Smith <eric@brouhaha.com>

Note: there are newer versions, but they have unresolved bugs

PR:		ports/110018 (part of, based on)
Submitted by:	Eric P. Scott <eps+pbug0703@ana.com>
This commit is contained in:
Andrew Pantyukhin 2007-06-16 08:43:57 +00:00
parent dca1ed5e28
commit ed15371ac8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=193637
4 changed files with 49 additions and 0 deletions

View File

@ -322,6 +322,7 @@
SUBDIR += kuickshow
SUBDIR += l2p
SUBDIR += landscape
SUBDIR += lcdtest
SUBDIR += lcms
SUBDIR += leafpak
SUBDIR += lfview

38
graphics/lcdtest/Makefile Normal file
View File

@ -0,0 +1,38 @@
# New ports collection makefile for: lcdtest
# Date created: 23 Mar 2007
# Whom: Eric P. Scott <eps+pbug0703@ana.com>
#
# $FreeBSD$
#
PORTNAME= lcdtest
PORTVERSION= 1.04
CATEGORIES= graphics
MASTER_SITES= http://www.brouhaha.com/~eric/software/lcdtest/download/ \
CENKES
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= LCD monitor test pattern generator
BUILD_DEPENDS= pngtopnm:${PORTSDIR}/graphics/netpbm
USE_GMAKE= yes
USE_SDL= sdl image
CFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
MAKE_ENV= LDFLAGS="${LDFLAGS}"
MAKE_ARGS= -o SDL/SDL.h -o SDL/SDL_image.h
PLIST_FILES= bin/lcdtest
PORTDOCS= README
post-patch:
@${REINPLACE_CMD} -e '/^CFLAGS =/s|=|+=|' ${WRKSRC}/Makefile
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/lcdtest ${PREFIX}/bin/
.ifndef NOPORTDOCS
@${INSTALL} -d ${DOCSDIR}/
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}/
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (lcdtest-1.04.tar.gz) = 7a5a34206438b628b8e5aea3da2ed84a
SHA256 (lcdtest-1.04.tar.gz) = 265327fb4a6e8b816966f858bfa882bae30bf44ab186b7bb1dc7da6b41b680f8
SIZE (lcdtest-1.04.tar.gz) = 27018

View File

@ -0,0 +1,7 @@
lcdtest is a utility to display LCD monitor test patterns. It may be
useful for adjusting the pixel clock frequency and phase on LCD
monitors when using analog inputs, and for finding pixels that are
stuck on or off.
WWW: http://www.brouhaha.com/~eric/software/lcdtest/
Author: Eric Smith <eric@brouhaha.com>