# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/symlinks/symlinks-1.2.ebuild,v 1.16 2004/12/05 21:23:54 vapier Exp $ inherit flag-o-matic eutils DESCRIPTION="Symlinks scans for and fixes broken or messy symlinks" HOMEPAGE="http://www.ibiblio.org/pub/linux/utils/file/" SRC_URI="http://www.ibiblio.org/pub/linux/utils/file/${P}.tar.gz mirror://debian/pool/main/s/symlinks/${P/-/_}-4.1.diff.gz" LICENSE="freedist" SLOT="0" KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" IUSE="static" DEPEND="virtual/libc" src_unpack() { unpack ${A} # bugfixes from the debian project. epatch ${DISTDIR}/${P/-/_}-4.1.diff.gz || die "patching failed" } src_compile() { # could be useful if being used to repair # symlinks that are preventing shared libraries from # functioning. use static && append-flags -static emake || die } src_install() { dobin symlinks || die doman symlinks.8 dodoc symlinks.lsm }