diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-05-21 14:14:24 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-05-21 14:14:24 +0000 |
commit | 19c9fa4ffa166043851b4992a21337d55c6d040e (patch) | |
tree | e1e00a6aea652812bd602b903ffb83dc7ef2ecb1 /media-libs/hamlib | |
parent | unset KERNEL-variable in dosemu-ebuild to fix compilation (bug #91261). (diff) | |
download | gentoo-2-19c9fa4ffa166043851b4992a21337d55c6d040e.tar.gz gentoo-2-19c9fa4ffa166043851b4992a21337d55c6d040e.tar.bz2 gentoo-2-19c9fa4ffa166043851b4992a21337d55c6d040e.zip |
added ~amd64 and made multilib-strict save
(Portage version: 2.0.51.19)
Diffstat (limited to 'media-libs/hamlib')
-rw-r--r-- | media-libs/hamlib/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/hamlib/hamlib-1.2.3.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/media-libs/hamlib/ChangeLog b/media-libs/hamlib/ChangeLog index 130cafb4b297..c5bbfab19997 100644 --- a/media-libs/hamlib/ChangeLog +++ b/media-libs/hamlib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/hamlib # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.12 2005/01/11 01:24:37 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.13 2005/05/21 14:14:24 blubb Exp $ + + 21 May 2005; Simon Stelling <blubb@gentoo.org> hamlib-1.2.3.ebuild: + added ~amd64 and made multilib-strict save 11 Jan 2005; Bryan Østergaard <kloeri@gentoo.org> hamlib-1.2.2.ebuild: Stable on alpha. diff --git a/media-libs/hamlib/hamlib-1.2.3.ebuild b/media-libs/hamlib/hamlib-1.2.3.ebuild index 869e1b20275d..c6f203f8a819 100644 --- a/media-libs/hamlib/hamlib-1.2.3.ebuild +++ b/media-libs/hamlib/hamlib-1.2.3.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.3.ebuild,v 1.3 2005/02/16 04:38:00 killsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.3.ebuild,v 1.4 2005/05/21 14:14:24 blubb Exp $ -inherit eutils +inherit eutils multilib DESCRIPTION="Ham radio backend rig control libraries" HOMEPAGE="http://sourceforge.net/projects/hamlib/" @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ~ppc ~alpha" +KEYWORDS="x86 ~ppc ~alpha ~amd64" IUSE="doc gd python tcltk X" RDEPEND="virtual/libc @@ -34,7 +34,7 @@ src_unpack() { src_compile() { econf \ - --libdir=/usr/lib/hamlib \ + --libdir=/usr/$(get_libdir)/hamlib \ --with-microtune \ --without-rpc-backends \ --without-perl-binding \ @@ -51,7 +51,7 @@ src_compile() { src_install() { einstall \ - libdir=${D}/usr/lib/hamlib || \ + libdir=${D}/usr/$(get_libdir)/hamlib || \ die "einstall failed" dodoc AUTHORS PLAN README README.betatester dodoc README.developer LICENSE NEWS TODO @@ -59,9 +59,9 @@ src_install() { dohtml doc/html/* doman doc/man/man3/* fi - insinto /usr/lib/pkgconfig + insinto /usr/$(get_libdir)/pkgconfig doins hamlib.pc - echo "LDPATH=/usr/lib/hamlib" > 73hamlib + echo "LDPATH=/usr/$(get_libdir)/hamlib" > 73hamlib insinto /etc/env.d doins 73hamlib } |