You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/lafilefixer/lafilefixer-0.5.ebuild

37 lines
1.2 KiB

# 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="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
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."
}