# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="provides a trash can by intercepting certain calls to glibc" HOMEPAGE="http://www.m-arriaga.net/software/${PN}/" SRC_URI="http://www.m-arriaga.net/software/${PN}/${P}.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND=">=sys-libs/glibc-2.3.2" S=${WORKDIR}/${P} src_unpack() { unpack ${A} patch -p0 < ${FILESDIR}/${P}-gentoo.patch cp $S/src/Makefile $S/src/Makefile.hacked sed -e "s:^CFLAGS.*:CFLAGS=${CFLAGS}:" \ $S/src/Makefile.hacked > $S/src/Makefile || die "Hack failed" } src_compile() { make || die } src_install() { dodir /etc /usr/lib make DESTDIR=${D} install || die dosbin cleanTrash/ct2.pl exeinto /etc/cron.daily newexe ${FILESDIR}/cleanTrash.cron cleanTrash.cron dodoc CHANGE.LOG README libtrash.conf TODO docinto cleanTrash dodoc cleanTrash/README cleanTrash/cleanTrash } pkg_postinst() { einfo einfo "To use this you have to put the trash library as one" einfo "of the variables in LD_PRELOAD." einfo "Example in bash:" einfo "export LD_PRELOAD=/usr/lib/libtrash.so" einfo "Also, see /etc/cron.daily/ct2.pl if you'd like to turn on" einfo "daily trash cleanup." einfo sleep 5 }