mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 16:59:17 -04:00
Add htmlsection-1.0, Insert section numbers in HTML and make a table of
contents PR: 31040 Submitted by: SAKAI Hiroaki <sakai@miya.ee.kagu.sut.ac.jp>
This commit is contained in:
parent
da7b4d9a19
commit
dbf1723e3c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=48437
6 changed files with 59 additions and 0 deletions
|
@ -61,6 +61,7 @@
|
||||||
SUBDIR += html
|
SUBDIR += html
|
||||||
SUBDIR += html2fo
|
SUBDIR += html2fo
|
||||||
SUBDIR += htmldoc
|
SUBDIR += htmldoc
|
||||||
|
SUBDIR += htmlsection
|
||||||
SUBDIR += info2html
|
SUBDIR += info2html
|
||||||
SUBDIR += info_to_html
|
SUBDIR += info_to_html
|
||||||
SUBDIR += isearch
|
SUBDIR += isearch
|
||||||
|
|
35
textproc/htmlsection/Makefile
Normal file
35
textproc/htmlsection/Makefile
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
# New ports collection makefile for: htmlsection
|
||||||
|
# Date created: 2 October 2001
|
||||||
|
# Whom: SAKAI Hiroaki <sakai@seki.ee.kagu.sut.ac.jp>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= htmlsection
|
||||||
|
PORTVERSION= 1.0
|
||||||
|
CATEGORIES= textproc www
|
||||||
|
MASTER_SITES= http://www.seki.ee.kagu.sut.ac.jp/~sakai/myfreesoft/ \
|
||||||
|
http://hp.vector.co.jp/authors/VA014157/myfreesoft/ \
|
||||||
|
http://www.people.or.jp/~hsakai/myfreesoft/
|
||||||
|
|
||||||
|
MAINTAINER= sakai@seki.ee.kagu.sut.ac.jp
|
||||||
|
|
||||||
|
MAN1= htmlsection.1
|
||||||
|
MANCOMPRESSED= yes
|
||||||
|
|
||||||
|
pre-build:
|
||||||
|
@(echo perl is set ${PERL} in pre-build:)
|
||||||
|
@(cd ${WRKSRC}; ./findperl.sh ${PERL} > whereperl)
|
||||||
|
@(cd ${WRKSRC}; ${CAT} whereperl)
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_SCRIPT} ${WRKSRC}/htmlsection ${PREFIX}/bin
|
||||||
|
${INSTALL_MAN} ${WRKSRC}/htmlsection.1.gz ${PREFIX}/man/man1
|
||||||
|
.if !defined(NOPORTDOCS)
|
||||||
|
@${MKDIR} ${DOCSDIR}
|
||||||
|
.for file in INSTALL README htmlsection_orig.html htmlsection.html
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
||||||
|
.endfor
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
textproc/htmlsection/distinfo
Normal file
1
textproc/htmlsection/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (htmlsection-1.0.tar.gz) = b01eebda5a73fdfa6f5fc03fed391426
|
1
textproc/htmlsection/pkg-comment
Normal file
1
textproc/htmlsection/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Insert section numbers in HTML and make a table of contents
|
15
textproc/htmlsection/pkg-descr
Normal file
15
textproc/htmlsection/pkg-descr
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
htmlsection is a perl script to insert section numbers in HTML. When you use
|
||||||
|
htmlsection, you don't have to manage section, table, figure, program-list,
|
||||||
|
and reference numbers and you don't have to make the table of contents,
|
||||||
|
table index, figure index, and program-list index.
|
||||||
|
|
||||||
|
* Insert section number in HTML and make links to the section.
|
||||||
|
* Make the table of contents.
|
||||||
|
* Insert table, figure, and program-list number and make links.
|
||||||
|
* Make the index of tables, figures, and program-lists.
|
||||||
|
* Insert reference number and make links.
|
||||||
|
|
||||||
|
WWW: http://www.seki.ee.kagu.sut.ac.jp/~sakai/myfreesoft/htmlsection.html
|
||||||
|
|
||||||
|
--
|
||||||
|
SAKAI Hiroaki <sakai@seki.ee.kagu.sut.ac.jp>
|
6
textproc/htmlsection/pkg-plist
Normal file
6
textproc/htmlsection/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
bin/htmlsection
|
||||||
|
%%PORTDOCS%%share/doc/htmlsection/INSTALL
|
||||||
|
%%PORTDOCS%%share/doc/htmlsection/README
|
||||||
|
%%PORTDOCS%%share/doc/htmlsection/htmlsection_orig.html
|
||||||
|
%%PORTDOCS%%share/doc/htmlsection/htmlsection.html
|
||||||
|
%%PORTDOCS%%@dirrm share/doc/htmlsection
|
Loading…
Add table
Reference in a new issue