diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2005-05-18 16:51:17 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2005-05-18 16:51:17 +0000 |
commit | 811e0609089543476e42b5fa37445e0868c5f17f (patch) | |
tree | 1099798f32182f101b77cbe104ec49bca135fcc6 /sysutils/deltup/Makefile | |
parent | 89dfb5ebce91b34dec73ac68581d29d3a4225598 (diff) | |
download | ports-811e0609089543476e42b5fa37445e0868c5f17f.tar.gz ports-811e0609089543476e42b5fa37445e0868c5f17f.zip |
Notes
Diffstat (limited to 'sysutils/deltup/Makefile')
-rw-r--r-- | sysutils/deltup/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sysutils/deltup/Makefile b/sysutils/deltup/Makefile new file mode 100644 index 000000000000..a428150443db --- /dev/null +++ b/sysutils/deltup/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: deltup +# Date created: 2005-05-18 +# Whom: Roman Bogorodskiy <novel@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= deltup +PORTVERSION= 0.4.2 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= novel@FreeBSD.org +COMMENT= Source delta update program + +RUN_DEPENDS= bdelta:${PORTSDIR}/misc/bdelta + +ALL_TARGET= deltup +PLIST_FILES= bin/deltup \ + bin/bzip2_old +MAN1= deltup.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/deltup ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/deltup.1 ${PREFIX}/man/man1 +.if !exists(${PREFIX}/bin/bzip2_old) + @${LN} -s ${BZIP2_CMD} ${PREFIX}/bin/bzip2_old +.endif + +.include <bsd.port.mk> |