summaryrefslogtreecommitdiff
blob: 11d43056eed6e14c5e4a878dcaa98d743b992a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright 1999-2003 Gentoo Technologies, Inc.
# 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.2 2003/06/18 09:05:56 taviso Exp $

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
	http://ftp.debian.org/debian/pool/main/s/symlinks/symlinks_1.2-4.1.diff.gz"

LICENSE="freedist"
SLOT="0"

KEYWORDS="~x86 ~alpha"

IUSE="static"

DEPEND="virtual/glibc"
RDEPEND="${DEPEND}"

inherit flag-o-matic eutils

S=${WORKDIR}/${P}

src_compile() {
	# bugfixes from the debian project.
	epatch ${DISTDIR}/symlinks_1.2-4.1.diff.gz || die "patching failed"
	
	# 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
	doman symlinks.8
	dodoc symlinks.lsm
}