From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:09:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D07A16A41F; Thu, 27 Oct 2005 14:09:20 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29DDA43D45; Thu, 27 Oct 2005 14:09:20 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE9KZm090920; Thu, 27 Oct 2005 14:09:20 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE9KRd090919; Thu, 27 Oct 2005 14:09:20 GMT (envelope-from jylefort) Message-Id: <200510271409.j9RE9KRd090919@repoman.freebsd.org> From: Jean-Yves Lefort Date: Thu, 27 Oct 2005 14:09:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/cmunge Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 14:09:20 -0000 jylefort 2005-10-27 14:09:20 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/cmunge Makefile distinfo pkg-descr Log: Add cmunge. CMUNGE is a simple tool for encrypting and compacting C source code, while leaving it syntactically and semantically unchanged. It does this by: * Recursively in-lining `user-defined' #include files. * Renaming C identifiers, except those in the C Standard Library, with names like l1 (i.e. letter-l one), l2, l3, etc. * Removing comments and blank lines, converting multiple consecutive whitespace characters (including `\n') into single blanks, removing all unnecessary whitespace between tokens. * Outputting the transformed code in lines of least N characters long, where N is a user-specified minimum line length. It accepts ANSI and K & R C as its input language. WWW: http://www.vcpc.univie.ac.at/~jhm/cmunge/ PR: ports/88066 Submitted by: Frerich Raabe Revision Changes Path 1.2010 +1 -0 ports/devel/Makefile 1.1 +32 -0 ports/devel/cmunge/Makefile (new) 1.1 +2 -0 ports/devel/cmunge/distinfo (new) 1.1 +18 -0 ports/devel/cmunge/pkg-descr (new)