blob: 5384266e5e93aa6576c92b4f86886f1b1ec707aa (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v 1.4 2006/11/27 12:50:52 gustavoz Exp $
inherit eutils toolchain-funcs
IUSE=""
DESCRIPTION="Clock applet for AfterStep"
SRC_URI="http://www.tigr.net/afterstep/download/asclock/${P}.tar.gz"
HOMEPAGE="http://www.tigr.net/afterstep/list.pl"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~mips ~ppc sparc x86"
DEPEND="x11-libs/libXpm"
RDEPEND="${DEPEND}
x11-proto/xextproto
x11-proto/xproto"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-gcc41.patch
ln -s themes/classic default_theme
}
src_compile() {
local x
for x in asclock parser symbols config
do
$(tc-getCC) \
${CFLAGS} \
-I/usr/include \
-Dlinux -D__i386__ \
-D_POSIX_C_SOURCE=199309L \
-D_POSIX_SOURCE \
-D_XOPEN_SOURCE \
-D_BSD_SOURCE \
-D_SVID_SOURCE \
-DFUNCPROTO=15 \
-DNARROWPROTO \
-c -o ${x}.o ${x}.c || die "compile failed"
done
$(tc-getCC) \
${CFLAGS} \
-o asclock \
asclock.o parser.o symbols.o config.o \
-L/usr/lib \
-L/usr/lib/X11 \
-lXpm -lXext -lX11 || die "compile asclock failed"
}
src_install() {
dobin asclock
local themesdir="/usr/share/${PN}/themes"
insinto ${themesdir}
doins -r themes/*
dodoc README README.THEMES TODO
cd ${D}/${themesdir}
rm -f Freeamp/Makefile{,.*}
ln -s classic default_theme
}
|