|
|
# Distributed under the terms of the GNU General Public License v2 | # Distributed under the terms of the GNU General Public License v2 |
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmitime/wmitime-0.3.ebuild,v 1.18 2008/11/25 23:59:19 tcunha Exp $ | # $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmitime/wmitime-0.3.ebuild,v 1.18 2008/11/25 23:59:19 tcunha Exp $ |
| |
inherit eutils |
inherit eutils toolchain-funcs |
| |
S=${WORKDIR}/${PN} |
|
IUSE="" |
|
DESCRIPTION="Overglorified clock dockapp w/time, date, and internet time" | DESCRIPTION="Overglorified clock dockapp w/time, date, and internet time" |
HOMEPAGE="http://www.neotokyo.org/illusion/" | HOMEPAGE="http://www.neotokyo.org/illusion/" |
SRC_URI="http://www.neotokyo.org/illusion/downloads/${P}.tar.gz" | SRC_URI="http://www.neotokyo.org/illusion/downloads/${P}.tar.gz" |
|
|
LICENSE="GPL-2" | LICENSE="GPL-2" |
SLOT="0" | SLOT="0" |
KEYWORDS="amd64 ppc ppc64 sparc x86" | KEYWORDS="amd64 ppc ppc64 sparc x86" |
|
IUSE="" |
| |
RDEPEND="x11-libs/libX11 | RDEPEND="x11-libs/libX11 |
x11-libs/libXext | x11-libs/libXext |
|
|
DEPEND="${RDEPEND} | DEPEND="${RDEPEND} |
x11-proto/xextproto" | x11-proto/xextproto" |
| |
|
S=${WORKDIR}/${PN}/${PN} |
|
|
src_unpack() { | src_unpack() { |
unpack ${A} | unpack ${A} |
cd "${S}" | cd "${S}" |
epatch "${FILESDIR}"/makefile.diff |
|
|
sed -i "s/cc/$(tc-getCC)/" Makefile || die "sed cc failed" |
|
sed -i "s/-D\$(LANG)//" Makefile || die "sed lang failed" |
} | } |
| |
src_compile() { | src_compile() { |
cd "${S}"/wmitime |
emake FLAGS="${CFLAGS}" || die "make failed" |
make || die "make failed" |
|
} | } |
| |
src_install() { | src_install() { |
cd "${S}"/wmitime |
|
dobin wmitime | dobin wmitime |
|
dodoc ../{BUGS,CHANGES,README} |
cd "${S}" |
|
dodoc BUGS CHANGES README |
|
} | } |