diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-07-28 12:37:51 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-07-28 12:37:51 +0000 |
commit | af7436cb60ce10b9ceef2ac6b4c280bf88285acc (patch) | |
tree | 88e24dfa3e9c74b5b188e6de2b84fbe27752ebfb /app-forensics/cmospwd/cmospwd-4.6.ebuild | |
parent | fix stefaan's surname (diff) | |
download | gentoo-2-af7436cb60ce10b9ceef2ac6b4c280bf88285acc.tar.gz gentoo-2-af7436cb60ce10b9ceef2ac6b4c280bf88285acc.tar.bz2 gentoo-2-af7436cb60ce10b9ceef2ac6b4c280bf88285acc.zip |
version bump
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-forensics/cmospwd/cmospwd-4.6.ebuild')
-rw-r--r-- | app-forensics/cmospwd/cmospwd-4.6.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app-forensics/cmospwd/cmospwd-4.6.ebuild b/app-forensics/cmospwd/cmospwd-4.6.ebuild new file mode 100644 index 000000000000..4d93bab7bd17 --- /dev/null +++ b/app-forensics/cmospwd/cmospwd-4.6.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/cmospwd/cmospwd-4.6.ebuild,v 1.1 2005/07/28 12:37:51 dragonheart Exp $ + +inherit toolchain-funcs + +DESCRIPTION="CmosPwd decrypts password stored in cmos used to access BIOS SETUP" +HOMEPAGE="http://www.cgsecurity.org/index.html?cmospwd.html" +SRC_URI="http://www.cgsecurity.org/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/libc" + +src_compile() { + cd src + $(tc-getCC) ${CFLAGS} cmospwd.c -o cmospwd || die +} + +src_install() { + dosbin src/cmospwd || die + dodoc cmospwd.txt || die +} + |