diff options
author | fjoe <fjoe@FreeBSD.org> | 2003-05-19 17:35:50 +0000 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2003-05-19 17:35:50 +0000 |
commit | 4299733d27692e59a93e637c56f6e397854bdd1c (patch) | |
tree | a9d8961fbfb0176ae6424853e38c1cb5c4f4a283 /misc/telbook | |
parent | 484c0947ea940229d3e36802519194b20f44aa46 (diff) | |
download | FreeBSD-ports-4299733d27692e59a93e637c56f6e397854bdd1c.zip FreeBSD-ports-4299733d27692e59a93e637c56f6e397854bdd1c.tar.gz |
New port: telbook
Simple telephone book.
Submitted by: Kirill Ponomarew
Diffstat (limited to 'misc/telbook')
-rw-r--r-- | misc/telbook/Makefile | 30 | ||||
-rw-r--r-- | misc/telbook/distinfo | 1 | ||||
-rw-r--r-- | misc/telbook/files/patch-telbook | 17 | ||||
-rw-r--r-- | misc/telbook/pkg-descr | 6 | ||||
-rw-r--r-- | misc/telbook/pkg-plist | 3 |
5 files changed, 57 insertions, 0 deletions
diff --git a/misc/telbook/Makefile b/misc/telbook/Makefile new file mode 100644 index 0000000..b9bc915 --- /dev/null +++ b/misc/telbook/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: telbook +# Date created: 19 May 2003 +# Whom: Kirill Ponomarew <ponomarew@oberon.net> +# +# $FreeBSD$ + +PORTNAME= telbook +PORTVERSION= 0.2 +CATEGORIES= misc +MASTER_SITES= http://home.arcor.de/kaffeetisch/downloads/ + +MAINTAINER= ponomarew@oberon.net +COMMENT= Simple telephone book + +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Gtk.pm:${PORTSDIR}/x11-toolkits/p5-Gtk + +NO_BUILD= yes + +DOC_FILES= README + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/telbook ${PREFIX}/bin/ +.ifndef (NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/${PORTNAME} +.for doc in ${DOC_FILES} + @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/misc/telbook/distinfo b/misc/telbook/distinfo new file mode 100644 index 0000000..a2f1f04 --- /dev/null +++ b/misc/telbook/distinfo @@ -0,0 +1 @@ +MD5 (telbook-0.2.tar.gz) = b5a032f8b12ec6c31d25dd9836bd25c9 diff --git a/misc/telbook/files/patch-telbook b/misc/telbook/files/patch-telbook new file mode 100644 index 0000000..1315628 --- /dev/null +++ b/misc/telbook/files/patch-telbook @@ -0,0 +1,17 @@ +--- telbook.orig Mon May 19 16:22:20 2003 ++++ telbook Mon May 19 16:22:45 2003 +@@ -28,11 +28,9 @@ + + package ui; + +-use constant { +- ROW_NAME => 0, +- ROW_HOME => 1, +- ROW_MOBILE => 2 +-}; ++use constant ROW_NAME => 0; ++use constant ROW_HOME => 1; ++use constant ROW_MOBILE => 2; + + sub new { + my ($class) = @_; diff --git a/misc/telbook/pkg-descr b/misc/telbook/pkg-descr new file mode 100644 index 0000000..352dd9b --- /dev/null +++ b/misc/telbook/pkg-descr @@ -0,0 +1,6 @@ +Telbook is a simple telephone book with which you can manage a +list of persons and their home and mobile telephone numbers. +Its purpose is not to provide you with a full-fletched address +book but to be a simple yet convenient tool. + +WWW: http://home.arcor.de/kaffeetisch/telbook.html diff --git a/misc/telbook/pkg-plist b/misc/telbook/pkg-plist new file mode 100644 index 0000000..14180d0 --- /dev/null +++ b/misc/telbook/pkg-plist @@ -0,0 +1,3 @@ +bin/telbook +%%PORTDOCS%%share/doc/telbook/README +%%PORTDOCS%%@dirrm share/doc/telbook |