1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

weblint - html syntax checker

This commit is contained in:
Paul Traina 1995-10-14 23:13:48 +00:00
parent d3ba225219
commit c5eebdd9ed
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=2334
6 changed files with 73 additions and 0 deletions

14
www/weblint/Makefile Normal file
View File

@ -0,0 +1,14 @@
# New ports collection makefile for: weblint
# Version required: 3.0
# Date created: Oct 14, 1995
# Whom: pst
#
# $Id$
#
DISTNAME= weblint-1.011
MASTER_SITES= ftp://ftp.khoral.com/pub/perl/www/
CATEGORIES+= www
MAINTAINER= pst
.include <bsd.port.mk>

1
www/weblint/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (weblint-1.011.tar.gz) = 5151e9f0fb430a0003192fffa9ee0098

View File

@ -0,0 +1,51 @@
*** Makefile Fri Jul 28 01:08:16 1995
--- Makefile Sat Oct 14 16:07:49 1995
***************
*** 3,10 ****
#
VERSION = 1.011
! BINDIR = /usr/local/bin
! MANDIR = /usr/local/man/man1
PSROFF = groff -Tps
PSVIEW = ghostview
RM = /bin/rm -f
--- 3,12 ----
#
VERSION = 1.011
! PREFIX ?= /usr/local
! BINDIR = ${PREFIX}/bin
! MANDIR = ${PREFIX}/man/man1
! LIBDIR = ${PREFIX}/lib
PSROFF = groff -Tps
PSVIEW = ghostview
RM = /bin/rm -f
***************
*** 14,26 ****
TARFILE = $(PROGRAM)-$(VERSION).tar
TGZ = $(TARFILE).gz
! all: $(PROGRAM) $(PSFILE)
install: $(PROGRAM)
! -cp $(PROGRAM) $(BINDIR)
! -chmod 755 $(BINDIR)/$(PROGRAM)
! -cp $(PROGRAM).1 $(MANDIR)
! -chmod 644 $(MANDIR)/$(PROGRAM).1
test:
@./test.pl
--- 16,27 ----
TARFILE = $(PROGRAM)-$(VERSION).tar
TGZ = $(TARFILE).gz
! all: $(PROGRAM)
install: $(PROGRAM)
! install -c -m 755 -o bin -g bin $(PROGRAM) $(BINDIR)
! install -c -m 644 -o bin -g bin $(PROGRAM).1 $(MANDIR)
! install -c -m 644 -o bin -g bin weblintrc $(LIBDIR)
test:
@./test.pl

1
www/weblint/pkg-comment Normal file
View File

@ -0,0 +1 @@
HTML validator and sanity checker

3
www/weblint/pkg-descr Normal file
View File

@ -0,0 +1,3 @@
Weblint is a syntax and minimal style checker for HTML: a perl script which
picks fluff off html pages, much in the same way traditional lint picks fluff
off C programs.

3
www/weblint/pkg-plist Normal file
View File

@ -0,0 +1,3 @@
bin/weblint
lib/weblintrc
man/man1/weblint.1