diff options
author | 2008-07-08 02:24:24 +0000 | |
---|---|---|
committer | 2008-07-08 02:24:24 +0000 | |
commit | 075d15b4801bbe7400c970489a088a26140bb2e7 (patch) | |
tree | 5263b476adb7ba5e302b9cae044983faea7843d4 /net-dialup/mgetty | |
parent | updated with gcc 4.3.1 fixes and corrected/simplified mgetty use logic; (diff) | |
download | gentoo-2-075d15b4801bbe7400c970489a088a26140bb2e7.tar.gz gentoo-2-075d15b4801bbe7400c970489a088a26140bb2e7.tar.bz2 gentoo-2-075d15b4801bbe7400c970489a088a26140bb2e7.zip |
Corrected install to remove extraneous frontends when USE=fax is not set
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.6 x86_64)
Diffstat (limited to 'net-dialup/mgetty')
-rw-r--r-- | net-dialup/mgetty/ChangeLog | 6 | ||||
-rw-r--r-- | net-dialup/mgetty/mgetty-1.1.36-r1.ebuild | 21 |
2 files changed, 19 insertions, 8 deletions
diff --git a/net-dialup/mgetty/ChangeLog b/net-dialup/mgetty/ChangeLog index 443733f15d3a..388c1349903a 100644 --- a/net-dialup/mgetty/ChangeLog +++ b/net-dialup/mgetty/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dialup/mgetty # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v 1.85 2008/06/07 22:53:23 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v 1.86 2008/07/08 02:24:24 nerdboy Exp $ + + 08 Jul 2008; Steve Arnold <nerdboy@gentoo.org> mgetty-1.1.36-r1.ebuild: + Corrected install to remove extraneous frontends when USE=fax is not set, + mostly just to tidy up along with the Hylafax updates. 07 Jun 2008; Alin Năstac <mrness@gentoo.org> -files/mgetty-1.1.35-callback.patch, -files/mgetty-1.1.35-faxrunq.patch, diff --git a/net-dialup/mgetty/mgetty-1.1.36-r1.ebuild b/net-dialup/mgetty/mgetty-1.1.36-r1.ebuild index 3a45485431ea..124196ddefdd 100644 --- a/net-dialup/mgetty/mgetty-1.1.36-r1.ebuild +++ b/net-dialup/mgetty/mgetty-1.1.36-r1.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/net-dialup/mgetty/mgetty-1.1.36-r1.ebuild,v 1.11 2008/06/07 22:53:23 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/mgetty-1.1.36-r1.ebuild,v 1.12 2008/07/08 02:24:24 nerdboy Exp $ inherit toolchain-funcs flag-o-matic eutils @@ -111,16 +111,23 @@ src_install () { dodoc voice/doc/* if use fax; then - mv samples/new_fax.all samples_new_fax.all || die "move failed." - docinto samples - dodoc samples/* + mv samples/new_fax.all samples_new_fax.all || die "move failed." + docinto samples + dodoc samples/* - docinto samples/new_fax - dodoc samples_new_fax.all/* + docinto samples/new_fax + dodoc samples_new_fax.all/* fi + if ! use fax; then + insinto /usr/share/${PN}/frontends + doins -r frontends/{voice,network} + else + insinto /usr/share/${PN} + doins -r frontends + fi insinto /usr/share/${PN} - doins -r patches frontends + doins -r patches insinto /usr/share/${PN}/voice doins -r voice/{contrib,Perl,scripts} |