blob: 754123983fd26b7e58cff12de37e7e9038cdf293 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/powertweak/powertweak-0.1.17-r2.ebuild,v 1.8 2002/11/30 01:40:08 vapier Exp $
DESCRIPTION="Powertweak"
SRC_URI="http://powertweak.sourceforge.net/files/${P}.tar.bz2"
HOMEPAGE="http://powertweak.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 -ppc"
DEPEND="=x11-libs/gtk+-1.2*
>=dev-libs/libxml-1.8.10"
src_unpack() {
CFLAGS="${CPPFLAGS} -Wno-error"
CPPFLAGS="${CPPFLAGS} -Wno-deprecated"
unpack ${A}
cd ${S}
for FILE in `find . -iname "Makefile*"`;do
cp ${FILE} ${FILE}.hacked
sed -e "s:\(^CFLAGS =.*\):\1 ${CFLAGS}:" \
-e "s:\(^CPPFLAGS =.*\):\1 ${CPPFLAGS}:" \
${FILE}.hacked > ${FILE} || die "Hack failed"
done
}
src_compile() {
CFLAGS="${CPPFLAGS} -Wno-error"
CPPFLAGS="${CPPFLAGS} -Wno-deprecated"
cp /usr/share/libtool/ltmain.sh .
econf
emake || die "Make failed"
}
src_install() {
einstall
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
docinto Documentation
dodoc Documentation/*
}
|