blob: c869cf634cf884d1857e822f126568d49f9d086f (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/elicit/elicit-0.7.20040117.ebuild,v 1.2 2004/02/07 01:31:49 vapier Exp $
inherit enlightenment
DESCRIPTION="tool for examining images on your desktop"
HOMEPAGE="http://enlightenment.org/pages/elicit.html"
DEPEND=">=x11-libs/evas-1.0.0.20031018_pre12
>=x11-libs/ecore-1.0.0.20031013_pre4
>=media-libs/edje-0.0.1.20031018
>=media-libs/imlib2-1.1.0"
src_unpack() {
unpack ${A}
sed -i 's:/usr/local:/usr:' ${S}/config.h
sed -i "s: -g : ${CFLAGS} :" ${S}/src/Makefile
}
src_compile() {
cd src
emake || die
}
src_install() {
dobin src/elicit
dodir /usr/share/${PN}
cp -r data ${D}/usr/share/${PN}/
find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null
dodoc README TODO
}
|