|
发表于 2009-10-4 08:09:59
|
显示全部楼层
Post by coderoar;2032713
將來一定要把它移植到Gentoo上去,太期待嘞。
- # Copyright 1999-2009 Gentoo Foundation
- # Distributed under the terms of the GNU General Public License v2
- # $Header: $
- EAPI="2"
- inherit git autotools
- EGIT_REPO_URI="git://anongit.freedesktop.org/plymouth"
- DESCRIPTION="Graphical boot animation (splash) and logger"
- HOMEPAGE="http://cgit.freedesktop.org/plymouth/"
- SRC_URI=""
- LICENSE="GPL-2"
- SLOT="0"
- KEYWORDS="~amd64"
- IUSE=""
- DEPEND=""
- RDEPEND="sys-boot/dracut"
- src_prepare() {
- eautoreconf
- }
- src_install() {
- emake install DESTDIR="${D}" || die "install failed"
- #work around qa warning
- rm "${D}"/lib64/libply.la #if in x86,
- rm "${D}"/lib64/libply.a #change lib64 --> lib
- }
复制代码 |
|