initial commit

This commit is contained in:
2011-09-07 21:52:54 +04:00
commit a875af6b67
122 changed files with 6256 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST findcruft-1.0.4.tar.bz2 16636 RMD160 73e0266e9a83bf7aacfd0a3a3659da179d23b040 SHA1 148f39c562cafccbc1d6f6a9ec0f66c811b381fe SHA256 6fde43f77b83f95dba65174de0505b2914f6fdabd583e039d1009902b21aeed7
DIST findcruft-config-20050807.tar.bz2 8125 RMD160 3caf0db0f7931a72ad8d095bddf7e08fea222c71 SHA1 6dac7604b1029f1dce1777a1af592eda3f373a97 SHA256 12577badc39daa00a34ba9935a0a07371d80376bc3025cf43a46e17f86823b01
EBUILD findcruft-1.0.4-r1.ebuild 877 RMD160 af4d5358abcdbbbd3fa185e111272c598ee81aa5 SHA1 964c0b9db2d5f59c8fc42dc8225484eac63e4ead SHA256 49979403fbde01db8e62225123b2243b6a4ecf9e231b094c9c0f4d5697636d0f

View File

@ -0,0 +1,33 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DEPEND=""
DESCRIPTION="Yet another script to find obsolete files"
HOMEPAGE="http://forums.gentoo.org/viewtopic.php?t=254197"
IUSE=""
KEYWORDS="~x86 ~amd64"
LICENSE="GPL-2"
RESTRICT="mirror"
SLOT="0"
SRC_URI="http://user.cs.tu-berlin.de/~sean/${P}.tar.bz2 \
http://ifp.loeber1.de/findcruft-config-20050807.tar.bz2"
src_unpack() {
unpack ${A}
sed -i "s#/usr/local#/usr#" ${WORKDIR}/bin/findcruft || die
}
src_install() {
mkdir -p ${D}/usr/lib && mv ${WORKDIR}/findcruft ${D}/usr/lib || die
insinto /usr
dobin ${WORKDIR}/bin/findcruft
dodoc ${WORKDIR}/lib/findcruft/LICENSE
}
pkg_postinst() {
einfo "Please check the files findcruft reports as cruft carefully"
einfo "before deleting them! There may be false positives!"
}