From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1LJd2g-0006Y8-Rk for garchives@archives.gentoo.org; Mon, 05 Jan 2009 00:10:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7413E06A3; Mon, 5 Jan 2009 00:10:01 +0000 (UTC) Received: from smtprelay11.ispgateway.de (smtprelay11.ispgateway.de [80.67.29.28]) by pigeon.gentoo.org (Postfix) with ESMTP id 7A22AE06A3 for ; Mon, 5 Jan 2009 00:10:01 +0000 (UTC) Received: from [62.224.156.62] (helo=arkane.local) by smtprelay11.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1LJd2e-0002pp-99; Mon, 05 Jan 2009 01:10:00 +0100 Received: by arkane.local (Postfix, from userid 1000) id 370C3928F; Mon, 5 Jan 2009 01:07:54 +0100 (CET) Date: Mon, 5 Jan 2009 01:07:54 +0100 From: Torsten Veller To: gentoo-dev@lists.gentoo.org, patrick@gentoo.org Subject: [gentoo-dev] Re: gentoo-x86 commit in app-forensics/memdump: memdump-1.0.1.ebuild ChangeLog Message-ID: <20090105010331.TA8dca0.tv@veller.net> Mail-Followup-To: gentoo-dev@lists.gentoo.org, patrick@gentoo.org References: Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Jabber-ID: tove@jabber.ccc.de X-PGP-Fingerprint: 0416 3C11 8D79 65B9 AAD0 2065 BBC7 14D1 9C67 CD96 User-Agent: Mutt/1.5.18 (2009-01-03) X-Df-Sender: 1067115 X-Archives-Salt: 692571cf-6bbc-46ad-b1b2-46725d2bf37f X-Archives-Hash: 4074ed926e7e616cb984e89afecd0061 * "Patrick Lauer (patrick)" : > file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/memdump/memdump-1.0.1.ebuild?rev=1.1&view=markup > plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/memdump/memdump-1.0.1.ebuild?rev=1.1&content-type=text/plain > > Index: memdump-1.0.1.ebuild > =================================================================== > # Copyright 1999-2009 Gentoo Foundation > # Distributed under the terms of the GNU General Public License v2 > # $Header: /var/cvsroot/gentoo-x86/app-forensics/memdump/memdump-1.0.1.ebuild,v 1.1 2009/01/04 23:45:43 patrick Exp $ > > DESCRIPTION="Simple memory dumper for UNIX-Like systems" > HOMEPAGE="http://www.porcupine.org/forensics" > SRC_URI="http://www.porcupine.org/forensics/${PN}-1.01.tar.gz" ~~~~ > LICENSE="IBM" > SLOT="0" > KEYWORDS="~amd64 ~ppc ~x86" > DEPEND="sys-apps/sed > sys-apps/grep" > RDEPEND="virtual/libc" ^^^^^^^^^^^^^^^^^^^^^^ > IUSE="" > > > S=${WORKDIR}/${PN}-1.01 ~~~~ > src_compile() { > cd ${S}/memdump-1.01 " " ~~~~ > emake XFLAGS="${CFLAGS}" OPT= DEBUG= || die > } > > src_test() { > if has userpriv ${FEATURES}; ~~~~~~~~~~~ not in pms afair > then > einfo "Cannot test with FEATURES=userpriv" > elif [ -x /bin/wc ]; > then > einfo "testing" > if [ "`./memdump -s 344 | wc -c`" = "344" ]; > then > einfo "passed test" > else > die "failed test" > fi > fi > } > > src_install() { > dosbin memdump || die > dodoc README LICENSE > doman memdump.1 > }