summaryrefslogtreecommitdiff
blob: f7c53d1dcddc7fa3eeecc9146dfcc1ae003831ee (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/x11-plugins/gai-pager/gai-pager-0.2-r1.ebuild,v 1.2 2004/05/10 13:22:17 dholm Exp $

MY_PV="${PV}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="This is an Enlightenment and a Waimea pager."
HOMEPAGE="http://gai.sourceforge.net/"
SRC_URI="mirror://sourceforge/gai/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND=">=x11-libs/gai-0.5.0_pre6"

S=${WORKDIR}/${MY_P}

src_compile() {
#	MY_CONF="--prefix=${D}/usr "
	econf ${MY_CONF} || die
	mv ${S}/Makefile ${S}/Makefile.orig
	sed s%"IMAGE_PATH = \"\\\\\"\$.PREFIX./"%"IMAGE_PATH = \"\\\\\"/usr/"% ${S}/Makefile.orig > ${S}/Makefile
	emake || die
}

src_install() {
	# small hack so the gnome picture gets installed in place
	mv ${S}/Makefile ${S}/Makefile.orig
	sed s%"GNOMEDIR = /usr"%"GNOMEDIR = ${D}/usr"% ${S}/Makefile.orig > ${S}/Makefile
	einstall || die
	dodoc BUGS COPYING CHANGES INSTALL README README.gai TODO
}