summaryrefslogtreecommitdiff
blob: 362975fb6d561ce77afd3b63f13007d701ab00ab (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/lafilefixer/lafilefixer-0.5.ebuild,v 1.15 2010/11/12 15:20:21 mattst88 Exp $

EAPI=2

DESCRIPTION="Utility to fix your .la files"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI=""
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86-linux"
IUSE=""
DEPEND=""
RDEPEND=">=app-shells/bash-3.2
	elibc_glibc? ( >=sys-apps/findutils-4.4.0 )"

S=""

src_unpack() { : ; }
src_prepare() { : ; }
src_configure() { : ; }
src_unpack() { : ; }
src_install() {	newbin "${FILESDIR}/${P}" ${PN} ; }

pkg_postinst() {
	elog "This simple utility will fix your .la files to not point to other .la files."
	elog "This is desirable because it will ensure your packages are not broken when"
	elog ".la files are removed from other packages."
	elog ""
	elog "For most uses, lafilefixer --justfixit should 'just work'. This will"
	elog "recurse through the most commonly used library folders and fix all .la"
	elog "files it encounters."
	elog ""
	elog "Read lafilefixer --help for a full description of all options."
}