blob: 30a96ea87f0b007061f7d684624f0606e6bcdf49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdate/wmdate-0.7.ebuild,v 1.13 2012/12/14 10:43:17 voyageur Exp $
inherit eutils toolchain-funcs
DESCRIPTION="yet another date-display dock application"
HOMEPAGE="http://solfertje.student.utwente.nl/~dalroi/applications.php"
SRC_URI="http://solfertje.student.utwente.nl/~dalroi/${PN}/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE=""
RDEPEND="x11-libs/libdockapp
x11-libs/libX11
x11-libs/libXext
x11-libs/libXpm"
DEPEND="${RDEPEND}
x11-misc/gccmakedep
x11-misc/imake"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-ComplexProgramTargetNoMan.patch
}
src_compile() {
xmkmf || die "xmkmf failed."
emake CC="$(tc-getCC)" CDEBUGFLAGS="${CFLAGS}" \
LDOPTIONS="${LDFLAGS}" || die "emake failed."
}
src_install() {
dobin ${PN}
dodoc Changelog README
}
|