e75220a357
This software changes the resolution of an available vbios mode. It patches only the RAM version of the video bios so the new resolution is lost each time you reboot. This port supersedes x11/855resolution. from Ben Lovett <ben at tilderoot.com>
35 lines
739 B
Makefile
35 lines
739 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/05/20 16:32:05 sturm Exp $
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
COMMENT= "change resolution on available vbios modes for i8x5/9x5"
|
|
|
|
DISTNAME= 915resolution-0.5.2
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://www.geocities.com/stomljen/
|
|
|
|
MAINTAINER= Ben Lovett <ben@tilderoot.com>
|
|
|
|
# public domain
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && make clean
|
|
|
|
do-install:
|
|
cd ${WRKBUILD} && \
|
|
${INSTALL_PROGRAM} 915resolution ${PREFIX}/sbin; \
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/915resolution; \
|
|
${INSTALL_DATA} README.txt ${PREFIX}/share/doc/915resolution
|
|
|
|
.include <bsd.port.mk>
|