mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-01-03 20:34:12 +01:00
36 lines
1001 B
Bash
36 lines
1001 B
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bubblemon/bubblemon-1.46.ebuild,v 1.7 2006/02/07 21:11:56 blubb Exp $
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A fun monitoring applet for your desktop, complete with swimming duck"
|
|
HOMEPAGE="http://www.ne.jp/asahi/linux/timecop"
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
|
|
IUSE=""
|
|
S=${WORKDIR}/${PN}-dockapp-${PV}
|
|
SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/${PN}-dockapp-${PV}.tar.gz"
|
|
DEPEND="virtual/libc
|
|
=x11-libs/gtk+-1.2*
|
|
>=sys-apps/sed-4"
|
|
|
|
src_unpack(){
|
|
unpack ${A}
|
|
cd ${S}
|
|
epatch ${FILESDIR}/bubblemon-1.46-correct_mem-swap_values.patch || die "epatch failed"
|
|
}
|
|
src_compile() {
|
|
sed -i "s/CFLAGS = -O3/CFLAGS = ${CFLAGS}/" Makefile
|
|
# sed -i "s/# EXTRA += -DUPSIDE_DOWN_DUCK/EXTRA += -DUPSIDE_DOWN_DUCK/" Makefile
|
|
|
|
make || die
|
|
}
|
|
|
|
src_install () {
|
|
into /usr
|
|
dobin bubblemon
|
|
dodoc ChangeLog README doc/* misc/*
|
|
}
|