f71c9b1c16
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@734 6952d904-891a-0410-993b-d76249ca496b
47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/scons-1.0.0.ebuild,v 1.6 2008/12/02 23:18:23 ranger Exp $
|
|
|
|
NEED_PYTHON="1.5.2"
|
|
MY_PV="${PV/_p/.d}"
|
|
|
|
inherit distutils
|
|
|
|
DESCRIPTION="Extensible Python-based build utility"
|
|
SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.gz"
|
|
HOMEPAGE="http://www.scons.org/"
|
|
|
|
SLOT="0"
|
|
LICENSE="MIT"
|
|
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
S=${WORKDIR}/${PN}-${MY_PV}
|
|
|
|
DOCS="RELEASE.txt CHANGES.txt LICENSE.txt"
|
|
|
|
src_install () {
|
|
distutils_src_install
|
|
# move man pages from /usr/man to /usr/share/man
|
|
dodir /usr/share
|
|
mv "${D}"/usr/man "${D}"/usr/share
|
|
}
|
|
|
|
pkg_preinst() {
|
|
# clean up stale junk left there by old faulty ebuilds
|
|
# see Bug 118022 and Bug 132448 and Bug 107013
|
|
einfo "Cleaning up stale orphaned py[co] files..."
|
|
einfo "Checking for /usr/lib/${PN}-${MY_PV}/SCons"
|
|
[[ -d "${ROOT}/usr/$(get_libdir)/${PN}-${MY_PV}/SCons" ]] \
|
|
&& rm -rf "${ROOT}/usr/$(get_libdir)/${PN}-${MY_PV}/SCons"
|
|
einfo "Done."
|
|
}
|
|
|
|
pkg_postinst() {
|
|
python_mod_optimize /usr/$(get_libdir)/${PN}-${MY_PV}
|
|
}
|
|
|
|
pkg_postrm() {
|
|
python_mod_cleanup /usr/$(get_libdir)/${PN}-${MY_PV}
|
|
}
|