mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
aaef462e0b
- Bump PORTREVISION - Make portlint happy - Drop MD5 checksum from distinfo - Update WWW line in pkg-descr - Fix pkg-plist in NOPORTEXAMPLES case
41 lines
996 B
Makefile
41 lines
996 B
Makefile
# New ports collection makefile for: Lens
|
|
# Date created: 2006-03-31
|
|
# Whom: TAKATSU Tomonari <tota@rtfm.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lens
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= mail ruby
|
|
MASTER_SITES= http://www.pitecan.com/Lens/ \
|
|
${MASTER_SITE_LOCAL:S|%SUBDIR%|tota/lens|}
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= A mail filter written in Ruby
|
|
|
|
NO_BUILD= yes
|
|
USE_RUBY= yes
|
|
|
|
LIB_FILES= lens.rb maildir.rb message.rb parsedate.rb classify.rb
|
|
RUBY_SHEBANG_FILES= lens
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/lens ${PREFIX}/bin
|
|
${MKDIR} ${RUBY_SITELIBDIR}/lens
|
|
.for f in ${LIB_FILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_SITELIBDIR}/lens
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/index.html ${DOCSDIR}
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/lensrc.sample ${EXAMPLESDIR}/dot.lensrc
|
|
${INSTALL_DATA} ${WRKSRC}/commandmailrc.sample ${EXAMPLESDIR}/dot.commandmailrc
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|