Index: packages/utils/efax/patches/01-makefile-comment-strip.patch
===================================================================
--- packages/utils/efax/patches/01-makefile-comment-strip.patch	(revision 0)
+++ packages/utils/efax/patches/01-makefile-comment-strip.patch	(revision 0)
@@ -0,0 +1,17 @@
+diff -ruN efax-0.9a-001114.orig/Makefile efax-0.9a-001114/Makefile
+--- efax-0.9a-001114.orig/Makefile	2000-06-28 22:01:22.000000000 -0400
++++ efax-0.9a-001114/Makefile	2009-02-03 17:26:49.000000000 -0500
+@@ -25,11 +25,11 @@
+ 
+ efax:	efax.o efaxlib.o efaxio.o efaxos.o efaxmsg.o
+ 	$(CC) -o efax $(LDFLAGS) efax.o efaxlib.o efaxio.o efaxos.o efaxmsg.o
+-	strip efax
++#	strip efax
+ 
+ efix:	efix.o efaxlib.o efaxmsg.o
+ 	$(CC) -o efix $(LDFLAGS) efix.o efaxlib.o efaxmsg.o
+-	strip efix
++#	strip efix
+ 
+ install:
+ 	cp fax efax efix $(BINDIR)
Index: packages/utils/efax/Makefile
===================================================================
--- packages/utils/efax/Makefile	(revision 0)
+++ packages/utils/efax/Makefile	(revision 0)
@@ -0,0 +1,47 @@
+# 
+# Copyright (C) 2009 David Cooper <dave@kupesoft.com>
+# Copyright (C) 2009 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=efax
+PKG_VERSION:=0.9a-001114
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=http://www.cce.com/efax/download
+PKG_MD5SUM:=28abef47d9700eb1c20bf5770565aa7d
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/efax
+  SECTION:=utils
+  CATEGORY:=Utilities
+  TITLE:=A small program to send/receives faxes
+endef
+
+define Package/efax/description
+ efax is a small ANSI C/POSIX program that sends and receives
+ faxes using any fax modem (Class 1, 2 or 2.0). efax is smaller
+ and easier to install than HylaFAX or mgetty+sendfax. As one
+ user put it "EFAX is a nice simple program for single user systems."
+endef
+
+define Build/Compile
+$(MAKE) -C $(PKG_BUILD_DIR) \
+    $(CONFIGURE_VARS)
+endef
+
+define Package/efax/install
+	$(INSTALL_DIR) $(1)/usr/bin
+	$(INSTALL_BIN) $(PKG_BUILD_DIR)/efax $(1)/usr/bin/
+	$(INSTALL_BIN) $(PKG_BUILD_DIR)/efix $(1)/usr/bin/
+	$(INSTALL_BIN) $(PKG_BUILD_DIR)/fax $(1)/usr/bin/
+endef
+
+$(eval $(call BuildPackage,efax))
+
