diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-12-06 05:03:22 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-12-06 05:03:22 +0000 |
commit | 07776c421183a0626d09ef82a14d38e97df74e30 (patch) | |
tree | 84ea9d1e3ef99c49560096d70886e7685a4640a4 /dev-libs/libiconv/libiconv-1.7.ebuild | |
parent | updated to latest version (diff) | |
download | gentoo-2-07776c421183a0626d09ef82a14d38e97df74e30.tar.gz gentoo-2-07776c421183a0626d09ef82a14d38e97df74e30.tar.bz2 gentoo-2-07776c421183a0626d09ef82a14d38e97df74e30.zip |
added libiconv, needed by pilot-link
Diffstat (limited to 'dev-libs/libiconv/libiconv-1.7.ebuild')
-rw-r--r-- | dev-libs/libiconv/libiconv-1.7.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-libs/libiconv/libiconv-1.7.ebuild b/dev-libs/libiconv/libiconv-1.7.ebuild new file mode 100644 index 000000000000..249dadc8924e --- /dev/null +++ b/dev-libs/libiconv/libiconv-1.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Mikael Hallendal <hallski@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libiconv/libiconv-1.7.ebuild,v 1.1 2001/12/06 05:03:22 hallski Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Converts between character encodings" +SRC_URI="ftp://ftp.gnu.org/pub/gnu/${PN}/${P}.tar.gz" +HOMEPAGE="http://www.gnome.org/" + +DEPEND="virtual/glibc" + +src_compile() { + ./configure --host=${CHOST} \ + --prefix=/usr || die + + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc AUTHORS COPYING.* ChangeLog NEWS README* THANKS + dodoc TODO NOTES PORTS DESIGN +} |