diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-02-11 10:44:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-02-11 10:44:53 +0000 |
commit | 65cbb3a647e3275a953b5fdde069d6ad78bae04e (patch) | |
tree | d5f38200bd89923f287c76e5700ad67a70babba9 /net-dns/idnkit | |
parent | arm/s390/sh stable (diff) | |
download | gentoo-2-65cbb3a647e3275a953b5fdde069d6ad78bae04e.tar.gz gentoo-2-65cbb3a647e3275a953b5fdde069d6ad78bae04e.tar.bz2 gentoo-2-65cbb3a647e3275a953b5fdde069d6ad78bae04e.zip |
arm/s390/sh stable #163692
(Portage version: 2.1.2-r9)
Diffstat (limited to 'net-dns/idnkit')
-rw-r--r-- | net-dns/idnkit/idnkit-1.0.ebuild | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/net-dns/idnkit/idnkit-1.0.ebuild b/net-dns/idnkit/idnkit-1.0.ebuild index 1be049b9a1ae..23b31a27e3c5 100644 --- a/net-dns/idnkit/idnkit-1.0.ebuild +++ b/net-dns/idnkit/idnkit-1.0.ebuild @@ -1,31 +1,28 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/idnkit-1.0.ebuild,v 1.19 2007/02/10 20:00:29 yoswink Exp $ - -S="${WORKDIR}/${P}-src" +# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/idnkit-1.0.ebuild,v 1.20 2007/02/11 10:44:53 vapier Exp $ DESCRIPTION="Toolkit for Internationalized Domain Names (IDN)" HOMEPAGE="http://www.nic.ad.jp/ja/idn/idnkit/download/" SRC_URI="http://www.nic.ad.jp/ja/idn/idnkit/download/sources/${P}-src.tar.gz" -SLOT="0" LICENSE="JNIC" -KEYWORDS="alpha ~amd64 hppa ppc ~ppc64 sparc x86" +SLOT="0" +KEYWORDS="alpha ~amd64 arm hppa ppc ~ppc64 s390 sh sparc x86" IUSE="" DEPEND="sys-libs/glibc" # non gnu systems need libiconv -src_unpack() -{ - unpack ${A} ; cd ${S} +S=${WORKDIR}/${P}-src + +src_unpack() { + unpack ${A} + cd "${S}" sed -i -e "s:head -1:head -n 1:g" * } -src_install() -{ - make DESTDIR="${D}" install - dodoc Changelog DISTFILES INSTALL INSTALL.ja LICENSE.txt NEWS \ - README README.ja - +src_install() { + emake DESTDIR="${D}" install || die + dodoc Changelog DISTFILES INSTALL INSTALL.ja NEWS README README.ja } |