blob: 8e9eb01f2a0b750d6c9ffff2eb78dabf866ba405 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# ex:ts=8
# Ports collection makefile for: phraze
# Date created: Wed Apr 16, 2003
# Whom: Michael L. Hostbaek <mich@freebsdcluster.org>
#
# $FreeBSD$
#
PORTNAME= phraze
PORTVERSION= 0.4
CATEGORIES= misc
MASTER_SITES= http://www.incava.org/pub/phraze/
MAINTAINER= mich@FreeBSD.org
COMMENT= Converts telephone number to combinations of valid words
USE_RUBY= yes
NO_BUILD= yes
post-patch:
@${REINPLACE_CMD} -e 's|^#!/usr/bin/ruby|#!${RUBY}|; \
s|/usr/share/phraze|${DATADIR}|' ${WRKSRC}/phraze ${WRKSRC}/phraze.1
do-install:
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/wordlist.phr ${DATADIR}
${INSTALL_SCRIPT} ${WRKSRC}/phraze ${PREFIX}/bin/phraze
${INSTALL_MAN} ${WRKSRC}/phraze.1 ${PREFIX}/man/man1/
MAN1= phraze.1
.include <bsd.port.mk>
|