blob: 3d202e413f8cc3042979c9b1fe8862e8f1f2600c (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libtlen/libtlen-20040912.ebuild,v 1.2 2005/03/27 00:55:15 luckyduck Exp $
inherit eutils
DESCRIPTION="Support library for Tlen IMS"
HOMEPAGE="http://libtlen.eu.org/"
SRC_URI="http://libtlen.eu.org/snapshots/archive/${P}.tar.gz"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64"
SLOT="0"
LICENSE="GPL-2"
IUSE="doc"
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
if use amd64; then
epatch ${FILESDIR}/${PV}-fPIC.patch
aclocal
autoconf
libtoolize --force --copy
fi
}
src_compile() {
econf \
--enable-shared || die
emake all || die
}
src_install() {
einstall || die
dodoc ChangeLog
}
|