diff options
author | skv <skv@FreeBSD.org> | 2005-02-28 21:29:26 +0800 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2005-02-28 21:29:26 +0800 |
commit | b79559d11d6b484e54c7f220b55bf95e3f7cac70 (patch) | |
tree | 1a3c041aa9d3e62a7e1ce78937971033f0fd9b08 /textproc | |
parent | f6426d33393d7633fcb3e8a14e73fcb7916aec60 (diff) | |
download | freebsd-ports-gnome-b79559d11d6b484e54c7f220b55bf95e3f7cac70.tar.gz freebsd-ports-gnome-b79559d11d6b484e54c7f220b55bf95e3f7cac70.tar.zst freebsd-ports-gnome-b79559d11d6b484e54c7f220b55bf95e3f7cac70.zip |
Add hhm 0.1, HTML Help Maker.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/hhm/Makefile | 29 | ||||
-rw-r--r-- | textproc/hhm/distinfo | 2 | ||||
-rw-r--r-- | textproc/hhm/files/Makefile | 11 | ||||
-rw-r--r-- | textproc/hhm/pkg-descr | 6 |
5 files changed, 49 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index f31b07d188e8..04618c7df92d 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -141,6 +141,7 @@ SUBDIR += gxmlviewer SUBDIR += hevea SUBDIR += hgrep + SUBDIR += hhm SUBDIR += highlight SUBDIR += hr-aspell SUBDIR += hs-haxml diff --git a/textproc/hhm/Makefile b/textproc/hhm/Makefile new file mode 100644 index 000000000000..b014f5e92d2b --- /dev/null +++ b/textproc/hhm/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: hhm +# Date created: 27 February 2005 +# Whom: Sergey Skvortsov <skv@protey.ru> +# +# $FreeBSD$ +# + +PORTNAME= hhm +PORTVERSION= 0.1 +CATEGORIES= textproc +MASTER_SITES= http://bonedaddy.net/pabs3/hhm/ +DISTNAME= ${PORTNAME}-${PORTVERSION}-src + +MAINTAINER= skv@FreeBSD.org +COMMENT= HTML Help Maker + +USE_BZIP2= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +MAKE_ENV= PREFIX=${PREFIX} +USE_REINPLACE= yes + +PLIST_FILES= bin/hhm + +post-patch: + ${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.prev + ${CP} ${FILESDIR}/Makefile ${WRKSRC}/Makefile + ${REINPLACE_CMD} -e 's!^typedef unsigned.*$$!!' ${WRKSRC}/hhm.c + +.include <bsd.port.mk> diff --git a/textproc/hhm/distinfo b/textproc/hhm/distinfo new file mode 100644 index 000000000000..0c4353d5549e --- /dev/null +++ b/textproc/hhm/distinfo @@ -0,0 +1,2 @@ +MD5 (hhm-0.1-src.tar.bz2) = 528ab64f67610d25a665f75157aaac9b +SIZE (hhm-0.1-src.tar.bz2) = 18600 diff --git a/textproc/hhm/files/Makefile b/textproc/hhm/files/Makefile new file mode 100644 index 000000000000..03217a7740d4 --- /dev/null +++ b/textproc/hhm/files/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PROG= hhm + +LDADD= -L${PREFIX}/lib -llzxcomp -lm +CFLAGS= -I${PREFIX}/include +BINDIR= ${PREFIX}/bin + +NOMAN= # + +.include <bsd.prog.mk> diff --git a/textproc/hhm/pkg-descr b/textproc/hhm/pkg-descr new file mode 100644 index 000000000000..e2c0ea56c138 --- /dev/null +++ b/textproc/hhm/pkg-descr @@ -0,0 +1,6 @@ +hhm is a program that makes ITS files and in the future it will also +make Compiled HTML Help (CHM) files. Both types of files are a kind of +compressed archive format used on Win98, Win2K and other Microsoft +operating systems to store documentation. + +WWW: http://bonedaddy.net/pabs3/hhm/ |