blob: dea27f7f838296241fda307a9ebbd0240196ccca (
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
|
# Copyright 999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/xforms-1.0_rc4.ebuild,v 1.8 2002/12/07 07:22:16 jmorgan Exp $
MY_P=${P/_rc/RC}
S=${WORKDIR}/${MY_P}
DESCRIPTION="This is a sample skeleton ebuild file"
HOMEPAGE="http://world.std.com/~xforms"
SRC_URI="ftp://ncmir.ucsd.edu/pub/xforms/OpenSource/${MY_P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc"
DEPEND="virtual/x11"
PROVIDE="virtual/xforms"
src_unpack() {
unpack $A
cd $S
# use custom CFLAGS
cp Imakefile Imakefile.orig
sed -e "s:CDEBUGFLAGS =:CDEBUGFLAGS = ${CFLAGS} #:" \
-e "s:CDEBUGFLAGS =:CDEBUGFLAGS = ${CFLAGS} #:" Imakefile.orig > Imakefile
}
src_compile() {
xmkmf -a
cp Makefile Makefile.orig
sed -e s/'demos$'// Makefile.orig > Makefile
# use custom CFLAGS
cp Makefile Makefile.orig
sed -e "s:CDEBUGFLAGS =:CDEBUGFLAGS = ${CFLAGS} #:" \
-e "s:CDEBUGFLAGS =:CDEBUGFLAGS = ${CFLAGS} #:" Makefile.orig > Makefile
make || die
}
src_install () {
make DESTDIR=${D} install || die
}
|