blob: 1146c08a0a73e8bb25833c36e2ce8ce8007611ff (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header:
DESCRIPTION="An OSF/Motif(R) clone"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.lesstif.org/"
LICENSE="LGPL-2"
KEYWORDS="~x86 ~ppc ~sparc"
SLOT="2.1"
PROVIDE="virtual/motif"
DEPEND="virtual/glibc
virtual/x11"
src_unpack() {
unpack ${A}
cd ${S}/scripts/autoconf
sed -e "/^aclocaldir =/ a DESTDIR = ${D}" \
Makefile.in > Makefile.in.hacked
mv Makefile.in.hacked Makefile.in || die
}
src_compile() {
econf \
--enable-static \
--enable-build-21 \
--enable-production \
--with-x || die "./configure failed"
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
make DESTDIR=${D} install || die "make install"
}
|