forked from Lainports/freebsd-ports
PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1] PR: 87985 [1]
34 lines
723 B
Makefile
34 lines
723 B
Makefile
# New ports collection makefile for: diffsplit
|
|
# Date created: 2002-10-10
|
|
# Whom: trevor
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= diffsplit
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= textproc devel
|
|
MASTER_SITES= http://www.pathname.com/~quinlan/software/diffsplit/
|
|
DISTNAME= diffsplit
|
|
EXTRACT_SUFX=
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Splits a unified diff into pieces which patch one file each
|
|
|
|
NO_BUILD= YES
|
|
NO_WRKSUBDIR= YES
|
|
PLIST_FILES= bin/diffsplit
|
|
USE_PERL5= YES
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKDIR}
|
|
@${CP} ${DISTDIR}/${DIST_SUBDIR}/diffsplit ${WRKDIR}
|
|
|
|
do-patch:
|
|
@${PERL} -pi -e "s:/usr/bin/perl:${PERL5}:g" ${WRKDIR}/diffsplit
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/diffsplit ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|