7a273b1698
pkglint -Wall -r --autofix --only aligned After running the above command, three packages had to be adjusted manually: In maelstrom-x11, pkglint didn't see that a commented variable assignment should have been re-aligned as well. In netmaze, there was a single line that didn't align well with all the others, but pkglint decided to adjust the whole paragraph to this single line. The result would have been ok, but not good. In tscp, there was a paragraph where some of the lines were indented one space more than the others. This rule is useful when one variable name is very long compared to the others, but not in this case.
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.20 2018/01/14 17:33:59 rillig Exp $
|
|
#
|
|
|
|
DISTNAME= hugov31_unix_source
|
|
PKGNAME= hugo-3.1.02.1
|
|
PKGREVISION= 4
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_IFARCHIVE:=programming/hugo/source/}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} hugolib.zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
#HOMEPAGE= http://www.generalcoffee.com/hugo.html
|
|
COMMENT= Interactive fiction design system and interpreter
|
|
|
|
SITES.hugolib.zip= ${MASTER_SITE_IFARCHIVE:=programming/hugo/library/}
|
|
|
|
USE_TOOLS+= gmake
|
|
FAKE_NCURSES= yes
|
|
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}
|
|
WRKSRC= ${WRKDIR}/hugov3.1.02
|
|
|
|
LIBDIR= ${PREFIX}/share/hugo
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hc ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hd ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/he ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${LIBDIR}
|
|
for f in hugofix.g hugofix.h hugolib.h objlib.h resource.h \
|
|
system.h verblib.g verblib.h verbstub.g verbstub.h window.h; \
|
|
do \
|
|
${INSTALL_DATA} ${WRKDIR}/$$f ${DESTDIR}${LIBDIR}; \
|
|
done
|
|
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|