|
|
这个最近更新到- xfrank@Kenshinxf ~ $ bmpanel --version
- bmpanel version 0.9.17
复制代码 于是发个git版本,省得每次都得改,大家感兴趣的可以试试- # Copyright 1999-2007 Gentoo Foundation
- # Distributed under the terms of the GNU General Public License v2
- # $Header: /var/cvsroot/gentoo-x86/x11-misc/bmpanel/bmpanel-9999.ebuild,v 1.10 2008/05/21 20:43:41 uberlord Exp $
- inherit git
- EGIT_REPO_URI="git://jiss.convex.ru/bmpanel.git"
- DESCRIPTION="A themeable reincarnation of fspanel"
- HOMEPAGE="http://nsf.110mb.com/bmpanel/"
- SRC_URI=""
- LICENSE="GPL-2"
- SLOT="0"
- KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
- IUSE=""
- RESTRICT="strip mirror"
- RDEPEND="dev-libs/libev
- media-libs/imlib2
- >=media-libs/freetype-2.1.10-r3"
- DEPEND="${RDEPEND}
- dev-util/pkgconfig
- dev-util/scons
- x11-proto/xproto"
- src_unpack() {
- git_src_unpack
- }
- src_compile() {
- scons || die "scons failed"
- }
- src_install () {
- dodir /usr/bin
- scons prefix="${D}/usr" install || die "scons install died"
- }
复制代码 |
|