diff options
-rw-r--r-- | app-misc/ifp-line/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/ifp-line/ifp-line-0.3.ebuild | 18 |
2 files changed, 12 insertions, 13 deletions
diff --git a/app-misc/ifp-line/ChangeLog b/app-misc/ifp-line/ChangeLog index c8f37c52b141..8a340d370630 100644 --- a/app-misc/ifp-line/ChangeLog +++ b/app-misc/ifp-line/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/ifp-line -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/ifp-line/ChangeLog,v 1.22 2009/12/27 08:23:08 josejx Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ifp-line/ChangeLog,v 1.23 2011/03/20 18:21:53 ssuominen Exp $ + + 20 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> ifp-line-0.3.ebuild: + Fix libusb depend to correct SLOT and remove any reference to libifp-module. 27 Dec 2009; Joseph Jezak <josejx@gentoo.org> ifp-line-0.3.ebuild: Marked ppc stable for bug #269277. diff --git a/app-misc/ifp-line/ifp-line-0.3.ebuild b/app-misc/ifp-line/ifp-line-0.3.ebuild index c645a82b62f0..9105b0b5d5d9 100644 --- a/app-misc/ifp-line/ifp-line-0.3.ebuild +++ b/app-misc/ifp-line/ifp-line-0.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/ifp-line/ifp-line-0.3.ebuild,v 1.7 2009/12/27 08:23:08 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/ifp-line/ifp-line-0.3.ebuild,v 1.8 2011/03/20 18:21:53 ssuominen Exp $ EAPI=2 inherit eutils @@ -14,7 +14,7 @@ SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="" -RDEPEND="dev-libs/libusb" +RDEPEND="virtual/libusb:0" DEPEND="${RDEPEND}" src_prepare() { @@ -22,12 +22,12 @@ src_prepare() { } src_install() { - dobin ifp || die "dobin failed" + dobin ifp || die dodoc NEWS README TIPS ChangeLog doman ifp.1 exeinto /usr/share/${PN} - doexe nonroot.sh || die "doexe failed" + doexe nonroot.sh || die } pkg_postinst() { @@ -35,13 +35,9 @@ pkg_postinst() { elog "To enable non-root usage of ${PN}, you use any of the following" elog "methods." elog - elog " 1. Merge media-sound/libifp-module and add the module to" - elog " /etc/modules.autoload.d/kernel-2.X (X being 4 or 6 depending" - elog " on what kernel you use." - elog - elog " 2. Follow the TIPS file in" + elog " 1. Follow the TIPS file in" elog " /usr/share/doc/${PF}" elog - elog " 3. Run /usr/share/${PN}/nonroot.sh" + elog " 2. Run /usr/share/${PN}/nonroot.sh" elog } |