blob: bf0c094a44f592476e2ca7d519675820db569e52 (
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
|
# New ports collection makefile for: diffconvert
# Date created: 30 December 2000
# Whom: George Reid <greid@ukug.uk.freebsd.org>
#
# $FreeBSD$
#
PORTNAME= diffconvert
PORTVERSION= 1.2
CATEGORIES= devel
MASTER_SITES= ftp://ftp.ilog.fr/pub/Users/haible/gnu/
MAINTAINER= ports@FreeBSD.org
COMMENT= A converter between context diff and unidiff formats
PROGRAMS= cd2ud cdiffreverse ud2cd udiffreverse
do-build:
.for P in ${PROGRAMS}
${CXX} ${WRKSRC}/${P}.cc -o ${WRKSRC}/${P}
.endfor
do-install:
.for P in ${PROGRAMS}
${INSTALL_PROGRAM} ${WRKSRC}/$P ${PREFIX}/bin
.endfor
.include <bsd.port.mk>
|