diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2004-10-14 07:35:21 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2004-10-14 07:35:21 +0000 |
commit | bdbd78730635f85023237be09006b4a436fecdaa (patch) | |
tree | b330e4f13517406b972991136bb39a770d1bcd4e /shells/zoidberg/Makefile | |
parent | c2b1c2a171a4eccfa65b72425386b6ca2fbc7363 (diff) | |
download | ports-bdbd78730635f85023237be09006b4a436fecdaa.tar.gz ports-bdbd78730635f85023237be09006b4a436fecdaa.zip |
Notes
Diffstat (limited to 'shells/zoidberg/Makefile')
-rw-r--r-- | shells/zoidberg/Makefile | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/shells/zoidberg/Makefile b/shells/zoidberg/Makefile new file mode 100644 index 000000000000..e64dadce8828 --- /dev/null +++ b/shells/zoidberg/Makefile @@ -0,0 +1,56 @@ +# ex:ts=8 +# Ports collection makefile for: zoidberg +# Date created: Sep 24, 2004 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= zoidberg +PORTVERSION= 0.90 +CATEGORIES= shells perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ + http://zoidberg.student.utwente.nl/downloads/Zoidberg/ +MASTER_SITE_SUBDIR= Bundle +DISTNAME= Zoidberg-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= A modular PERL shell + +BUILD_DEPENDS= ${SITE_PERL}/Exporter/Tidy.pm:${PORTSDIR}/devel/p5-Exporter-Tidy \ + ${SITE_PERL}/Term/ReadLine/Zoid.pm:${PORTSDIR}/devel/p5-Term-ReadLine-Zoid \ + ${SITE_PERL}/Env/PS1.pm:${PORTSDIR}/devel/p5-Env-PS1 +RUN_DEPENDS= ${SITE_PERL}/Exporter/Tidy.pm:${PORTSDIR}/devel/p5-Exporter-Tidy \ + ${SITE_PERL}/Term/ReadLine/Zoid.pm:${PORTSDIR}/devel/p5-Term-ReadLine-Zoid \ + ${SITE_PERL}/Env/PS1.pm:${PORTSDIR}/devel/p5-Env-PS1 + +PERL_MODBUILD= yes +CONFIGURE_ARGS= install_path=doc="${DOCSDIR}" \ + install_path=share="${DATADIR}" + +PORTDOCS= * + +MAN1= zoid.1 zoiddevel.1 zoidfaq.1 zoiduser.1 +MAN3= Bundle::Zoidberg.3 \ + Zoidberg.3 \ + Zoidberg::Contractor.3 \ + Zoidberg::DispatchTable.3 \ + Zoidberg::Eval.3 \ + Zoidberg::Fish.3 \ + Zoidberg::Fish::Commands.3 \ + Zoidberg::Fish::Intel.3 \ + Zoidberg::Fish::Log.3 \ + Zoidberg::Fish::ReadLine.3 \ + Zoidberg::PluginHash.3 \ + Zoidberg::Shell.3 \ + Zoidberg::StringParser.3 \ + Zoidberg::Utils.3 \ + Zoidberg::Utils::Error.3 \ + Zoidberg::Utils::FileSystem.3 \ + Zoidberg::Utils::GetOpt.3 \ + Zoidberg::Utils::Output.3 + +post-install: + @${ECHO_CMD} ${PREFIX}/bin/zoid >> /etc/shells + +.include <bsd.port.mk> |