diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-11-02 08:38:03 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-11-02 08:38:03 +0000 |
commit | 6f919f3fcaaa91058f9fc1cd7a9567b64eb24fc8 (patch) | |
tree | 39b9a5d2cbdcd10d2885a8ace1e0a17deb418342 /sci-libs/indilib | |
parent | delist myself as maintainer (diff) | |
download | gentoo-2-6f919f3fcaaa91058f9fc1cd7a9567b64eb24fc8.tar.gz gentoo-2-6f919f3fcaaa91058f9fc1cd7a9567b64eb24fc8.tar.bz2 gentoo-2-6f919f3fcaaa91058f9fc1cd7a9567b64eb24fc8.zip |
Cleanup ebuild and add ppc/ppc64 love for KDE 4.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'sci-libs/indilib')
-rw-r--r-- | sci-libs/indilib/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/indilib/indilib-0.5.ebuild | 22 |
2 files changed, 15 insertions, 12 deletions
diff --git a/sci-libs/indilib/ChangeLog b/sci-libs/indilib/ChangeLog index 5bda64c62871..48f4e0416ba7 100644 --- a/sci-libs/indilib/ChangeLog +++ b/sci-libs/indilib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/indilib # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/ChangeLog,v 1.2 2008/06/09 12:04:02 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/ChangeLog,v 1.3 2008/11/02 08:38:03 vapier Exp $ + + 02 Nov 2008; Mike Frysinger <vapier@gentoo.org> indilib-0.5.ebuild: + Cleanup ebuild and add ppc/ppc64 love for KDE 4. 09 Jun 2008; Diego Pettenò <flameeyes@gentoo.org> +files/indilib-0.5+gcc-4.3.patch, indilib-0.5.ebuild: diff --git a/sci-libs/indilib/indilib-0.5.ebuild b/sci-libs/indilib/indilib-0.5.ebuild index 1e25e07a0004..54647471ac3b 100644 --- a/sci-libs/indilib/indilib-0.5.ebuild +++ b/sci-libs/indilib/indilib-0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/indilib-0.5.ebuild,v 1.2 2008/06/09 12:04:02 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/indilib/indilib-0.5.ebuild,v 1.3 2008/11/02 08:38:03 vapier Exp $ inherit multilib eutils @@ -10,13 +10,12 @@ SRC_URI="mirror://sourceforge/indi/${PN}-${PV}.tar.gz" LICENSE="LGPL-2" SLOT="0" - -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="usb v4l2" RDEPEND="sci-libs/cfitsio - usb? ( dev-libs/libusb ) - v4l2? ( >=sys-kernel/linux-headers-2.6 )" + usb? ( dev-libs/libusb ) + v4l2? ( >=sys-kernel/linux-headers-2.6 )" DEPEND="${RDEPEND}" S="${WORKDIR}/indi" @@ -24,17 +23,18 @@ S="${WORKDIR}/indi" src_unpack() { unpack ${A} cd "${S}" - epatch "${FILESDIR}"/${P}+gcc-4.3.patch + sed -i '/#include <sys.io.h>/d' src/apogee/*.cpp } -src_compile(){ - myconf="${myconf} $(use_enable usb) $(use_enable v4l2)" - - econf ${myconf} || die "econf failed" +src_compile() { + econf \ + $(use_enable usb) \ + $(use_enable v4l2) \ + || die "econf failed" emake || die "emake failed" } -src_install(){ +src_install() { emake install DESTDIR="${D}" || die "make install failed" } |