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/Makefile | |
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/Makefile')
-rw-r--r-- | misc/telbook/Makefile | 30 |
1 files changed, 30 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> |