mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
9ad713d54b
This patch updates editors/hexedit to 1.2.12. Additionally included is a patch (patch-allowwhitespaces) which allows a hex search pattern to contain whitespaces (e.g. A1 B2 C3 instead of A1B2C3). PR: ports/101078 Submitted by: Andre Albsmeier <Andre.Albsmeier@siemens.com> Approved by: maintainer timeout
31 lines
706 B
Makefile
31 lines
706 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: hexedit
|
|
# Date created: 5 August 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hexedit
|
|
PORTVERSION= 1.2.12
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://people.mandriva.com/~prigaux/ \
|
|
${MASTER_SITE_LOCAL:S/$/:local/}
|
|
MASTER_SITE_SUBDIR= obrien/:local
|
|
DISTFILES= ${DISTNAME}.src.tgz:DEFAULT,local
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
COMMENT= View and edit files in hexadecimal or ASCII
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/-${PORTVERSION}//}
|
|
GNU_CONFIGURE= yes
|
|
MAN1= hexedit.1
|
|
|
|
PLIST_FILES= bin/hexedit
|
|
|
|
do-install:
|
|
@ ${INSTALL_PROGRAM} ${WRKSRC}/hexedit ${PREFIX}/bin
|
|
@ ${INSTALL_MAN} ${WRKSRC}/hexedit.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|