forked from Lainports/freebsd-ports
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight
31 lines
725 B
Makefile
31 lines
725 B
Makefile
# Created by: Remington Lang <MrL0Lz@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= 915resolution
|
|
PORTVERSION= 0.5.3
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= LOCAL/ehaupt
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Resolution tool for Intel i915 video cards
|
|
|
|
USE_RC_SUBR= 915resolution
|
|
|
|
PLIST_FILES= sbin/915resolution
|
|
PORTDOCS= README.txt LICENSE.txt chipset_info.txt changes.log
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} ${WRKSRC}/915resolution.c -o ${WRKSRC}/915resolution
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/915resolution ${STAGEDIR}${PREFIX}/sbin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|