summaryrefslogtreecommitdiff
path: root/sysutils/phantom
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/phantom')
-rw-r--r--sysutils/phantom/Makefile23
-rw-r--r--sysutils/phantom/distinfo2
-rw-r--r--sysutils/phantom/files/patch-Makefile22
-rw-r--r--sysutils/phantom/pkg-descr15
4 files changed, 0 insertions, 62 deletions
diff --git a/sysutils/phantom/Makefile b/sysutils/phantom/Makefile
deleted file mode 100644
index cf0a02ab5204..000000000000
--- a/sysutils/phantom/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# Created by: Jeffrey H. Johnson <CPE1704TKS@bellsouth.net>
-# $FreeBSD$
-
-PORTNAME= phantom
-PORTVERSION= 1.2
-PORTREVISION= 1
-CATEGORIES= sysutils
-MASTER_SITES= http://www.vanheusden.com/Linux/
-
-MAINTAINER= ota@j.email.ne.jp
-COMMENT= Phantomblock generator (converts existing files to sparse files)
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-LICENSE= GPLv2
-
-USES= tar:tgz
-ALL_TARGET= all
-PLIST_FILES= bin/phantom
-
-.include <bsd.port.mk>
diff --git a/sysutils/phantom/distinfo b/sysutils/phantom/distinfo
deleted file mode 100644
index b2787a4bb4a7..000000000000
--- a/sysutils/phantom/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (phantom-1.2.tgz) = 9ce7d0d7e6561474a0b4d70f9ae0fb4010ef9b4f012c9018bf9fdca1704ac6c2
-SIZE (phantom-1.2.tgz) = 4425
diff --git a/sysutils/phantom/files/patch-Makefile b/sysutils/phantom/files/patch-Makefile
deleted file mode 100644
index 76bb31b16394..000000000000
--- a/sysutils/phantom/files/patch-Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
---- Makefile.orig 2005-07-08 09:30:27 UTC
-+++ Makefile
-@@ -1,8 +1,8 @@
- VERSION=1.2
-
- DEBUG=#-g
--LDFLAGS=$(DEBUG)
--CFLAGS=-O2 -Wall -DVERSION=\"$(VERSION)\" $(DEBUG)
-+LDFLAGS+=$(DEBUG)
-+CFLAGS+=-DVERSION=\"$(VERSION)\" -DMADV_SEQUENTIAL $(DEBUG)
-
- OBJS=phantom.o
-
-@@ -12,7 +12,7 @@ phantom: $(OBJS)
- $(CC) -Wall -W $(OBJS) $(LDFLAGS) -o phantom
-
- install: phantom
-- cp phantom $(DESTDIR)/usr/bin
-+ ${BSD_INSTALL_PROGRAM} phantom $(DESTDIR)${PREFIX}/bin
-
- clean:
- rm -f $(OBJS) core phantom
diff --git a/sysutils/phantom/pkg-descr b/sysutils/phantom/pkg-descr
deleted file mode 100644
index 19ffad05df8a..000000000000
--- a/sysutils/phantom/pkg-descr
+++ /dev/null
@@ -1,15 +0,0 @@
-This tool removes blocks of 0x00 from files by replacing them with
-phantomblocks. That way, a file uses less diskspace while its contents
-hasn't changed at all!
-
-BEWARE: after copying these files with tar, cp, cpio or any other tool,
-the phantomblocks have been replaced with 0x00-blocks again!
-
-EXAMPLE:
-
-find / -type f -print | xargs -n 1 phantom -r -i
-
-This would go trough the whole harddisk, scan all files and generate
-0x00-blocks where necessary.
-
-WWW: http://www.vanheusden.com/Linux/phantom.php