diff options
author | sumikawa <sumikawa@FreeBSD.org> | 2005-04-15 01:19:20 +0800 |
---|---|---|
committer | sumikawa <sumikawa@FreeBSD.org> | 2005-04-15 01:19:20 +0800 |
commit | 4124fad160ba8270e9a34f152af04a183ccb1f4a (patch) | |
tree | 07d07363bda634519b1617fdee26c9e25ca64c0d /converters/ical2html | |
parent | 09ab045ef30f8b3f1f2bd8373e1505da59579c14 (diff) | |
download | freebsd-ports-gnome-4124fad160ba8270e9a34f152af04a183ccb1f4a.tar.gz freebsd-ports-gnome-4124fad160ba8270e9a34f152af04a183ccb1f4a.tar.zst freebsd-ports-gnome-4124fad160ba8270e9a34f152af04a183ccb1f4a.zip |
ical2html takes an iCalendar file and outputs an HTML file showing one
or more months in the form of tables.
Submitted by: Keiichi SHIMA <keiichi@iijlab.net>
Reviewed by: sumikawa
Diffstat (limited to 'converters/ical2html')
-rw-r--r-- | converters/ical2html/Makefile | 26 | ||||
-rw-r--r-- | converters/ical2html/distinfo | 2 | ||||
-rw-r--r-- | converters/ical2html/files/patch-Makefile.in | 11 | ||||
-rw-r--r-- | converters/ical2html/files/patch-icalmerge.c | 11 | ||||
-rw-r--r-- | converters/ical2html/pkg-descr | 2 | ||||
-rw-r--r-- | converters/ical2html/pkg-plist | 5 |
6 files changed, 57 insertions, 0 deletions
diff --git a/converters/ical2html/Makefile b/converters/ical2html/Makefile new file mode 100644 index 000000000000..90f22de41e66 --- /dev/null +++ b/converters/ical2html/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: ical2html +# Date created: Thu Apr 14 18:08:52 BST 2005 +# Whom: keiichi@iijlab.net +# +# $FreeBSD$ +# + +PORTNAME= ical2html +PORTVERSION= 0.4 +CATEGORIES= converters +MASTER_SITES= http://www.w3.org/Tools/Ical2html/ + +MAINTAINER= keiichi@iijlab.net +COMMENT= Manipulation commands for iCalendar files + +LIB_DEPENDS= ical.0:${PORTSDIR}/devel/libical + +GNU_CONFIGURE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib + +USE_GETOPT_LONG= yes + +.include <bsd.port.mk> diff --git a/converters/ical2html/distinfo b/converters/ical2html/distinfo new file mode 100644 index 000000000000..5163c6a7c7d3 --- /dev/null +++ b/converters/ical2html/distinfo @@ -0,0 +1,2 @@ +MD5 (ical2html-0.4.tar.gz) = 5884b2ff2665640bde7f1a296a144e37 +SIZE (ical2html-0.4.tar.gz) = 88490 diff --git a/converters/ical2html/files/patch-Makefile.in b/converters/ical2html/files/patch-Makefile.in new file mode 100644 index 000000000000..5c73b972164c --- /dev/null +++ b/converters/ical2html/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in.orig Wed Apr 13 12:49:01 2005 ++++ Makefile.in Wed Apr 13 12:48:37 2005 +@@ -89,7 +89,7 @@ + am__quote = @am__quote@ + bindir = @bindir@ + build_alias = @build_alias@ +-datadir = @datadir@ ++datadir = @datadir@/ical2html + exec_prefix = @exec_prefix@ + host_alias = @host_alias@ + includedir = @includedir@ diff --git a/converters/ical2html/files/patch-icalmerge.c b/converters/ical2html/files/patch-icalmerge.c new file mode 100644 index 000000000000..6a9f2acd6d0b --- /dev/null +++ b/converters/ical2html/files/patch-icalmerge.c @@ -0,0 +1,11 @@ +--- icalmerge.c.orig Thu Jul 31 07:19:06 2003 ++++ icalmerge.c Wed Apr 13 18:08:16 2005 +@@ -27,7 +27,7 @@ + #include "config.h" + + +-#define PRODID "-//W3C//NONSGML icalmerge " ## VERSION ## "//EN" ++#define PRODID "-//W3C//NONSGML icalmerge "/**/VERSION/**/"//EN" + + #define ERR_OUT_OF_MEM 1 /* Program exit codes */ + #define ERR_USAGE 2 diff --git a/converters/ical2html/pkg-descr b/converters/ical2html/pkg-descr new file mode 100644 index 000000000000..c246f2ff5518 --- /dev/null +++ b/converters/ical2html/pkg-descr @@ -0,0 +1,2 @@ +ical2html takes an iCalendar file and outputs an HTML file showing one +or more months in the form of tables. Requires libical. diff --git a/converters/ical2html/pkg-plist b/converters/ical2html/pkg-plist new file mode 100644 index 000000000000..4b47e205f6b7 --- /dev/null +++ b/converters/ical2html/pkg-plist @@ -0,0 +1,5 @@ +bin/ical2html +bin/icalfilter +bin/icalmerge +share/ical2html/calendar.css +@dirrm share/ical2html |