blob: d9d3a2afd0d435997c5f4daf5d2599d2372bb426 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-0.5.4.ebuild,v 1.3 2004/08/23 15:49:19 psi29a Exp $
DESCRIPTION="Internationalized Domain Names (IDN) implementation."
HOMEPAGE="http://www.gnu.org/software/libidn/"
SRC_URI="ftp://alpha.gnu.org/pub/gnu/libidn/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
# See http://www.gnu.org/software/libidn/manual/html_node/Supported-Platforms.html
KEYWORDS="~x86 ~ppc ~amd64 ~sparc ppc64 ~mips"
IUSE=""
DEPEND=""
src_compile()
{
econf || die
emake || die
}
src_install()
{
einstall || die
}
|