diff options
author | miwi <miwi@FreeBSD.org> | 2009-02-16 05:23:29 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-02-16 05:23:29 +0800 |
commit | 6b8171e3f3947edf16d91836cad0cc3cd73e1f6d (patch) | |
tree | d9f823f77dd7433d4dff9a3535aa709b9533e5b9 /editors/tweak | |
parent | 8d9e01804b6101a408766f6075cbc4ae3718fefe (diff) | |
download | freebsd-ports-gnome-6b8171e3f3947edf16d91836cad0cc3cd73e1f6d.tar.gz freebsd-ports-gnome-6b8171e3f3947edf16d91836cad0cc3cd73e1f6d.tar.zst freebsd-ports-gnome-6b8171e3f3947edf16d91836cad0cc3cd73e1f6d.zip |
Tweak is a hex editor. It allows you to edit a file at very low level,
letting you see the full and exact binary contents of the file. It can be
useful for modifying binary files such as executables, editing disk or
CD images, debugging programs that generate binary file formats incorrectly,
and many other things.
WWW: http://www.chiark.greenend.org.uk/~sgtatham/tweak/
PR: ports/131724
Submitted by: Jille Timmermans (jille at quis.cx)
Diffstat (limited to 'editors/tweak')
-rw-r--r-- | editors/tweak/Makefile | 19 | ||||
-rw-r--r-- | editors/tweak/distinfo | 3 | ||||
-rw-r--r-- | editors/tweak/pkg-descr | 7 |
3 files changed, 29 insertions, 0 deletions
diff --git a/editors/tweak/Makefile b/editors/tweak/Makefile new file mode 100644 index 000000000000..1c37051c9625 --- /dev/null +++ b/editors/tweak/Makefile @@ -0,0 +1,19 @@ +# Ports collection makefile for: tweak +# Date created: Sun Feb 15, 2009 +# Whom: Jille Timmermans (jille@quis.cx) +# $FreeBSD$ + +PORTNAME= tweak +PORTVERSION= 3.01 +CATEGORIES= editors +MASTER_SITES= http://www.chiark.greenend.org.uk/~sgtatham/${PORTNAME}/ +#DISTNAME= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= jille@quis.cx +COMMENT= An efficient hex editor + +USE_GMAKE= yes +MAN1= tweak.1 +PLIST_FILES= bin/tweak + +.include <bsd.port.mk> diff --git a/editors/tweak/distinfo b/editors/tweak/distinfo new file mode 100644 index 000000000000..d4b8e3fb8529 --- /dev/null +++ b/editors/tweak/distinfo @@ -0,0 +1,3 @@ +MD5 (tweak-3.01.tar.gz) = 3ae8db9fd482b679835a80c4635f71be +SHA256 (tweak-3.01.tar.gz) = 196e629705969d0f44fdd1436a31c213478bc3ee8ba63e986b56105353c8fd94 +SIZE (tweak-3.01.tar.gz) = 71681 diff --git a/editors/tweak/pkg-descr b/editors/tweak/pkg-descr new file mode 100644 index 000000000000..8294beaf01d7 --- /dev/null +++ b/editors/tweak/pkg-descr @@ -0,0 +1,7 @@ +Tweak is a hex editor. It allows you to edit a file at very low level, +letting you see the full and exact binary contents of the file. It can be +useful for modifying binary files such as executables, editing disk or +CD images, debugging programs that generate binary file formats incorrectly, +and many other things. + +WWW: http://www.chiark.greenend.org.uk/~sgtatham/tweak/ |