diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2004-01-23 12:19:37 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2004-01-23 12:19:37 +0000 |
commit | d8a4c8469ab6fc401fe4a78e539c296e90a26a85 (patch) | |
tree | 0ed1758d2fed99fd52403d8c29a660a09ff6b0cb /net-dialup/mgetty | |
parent | Inserted upstream-patch for amd64. See bug #36676. (Manifest recommit) (diff) | |
download | gentoo-2-d8a4c8469ab6fc401fe4a78e539c296e90a26a85.tar.gz gentoo-2-d8a4c8469ab6fc401fe4a78e539c296e90a26a85.tar.bz2 gentoo-2-d8a4c8469ab6fc401fe4a78e539c296e90a26a85.zip |
change group phone to fax in voice.conf-dist and add group fax to the system
Diffstat (limited to 'net-dialup/mgetty')
-rw-r--r-- | net-dialup/mgetty/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/mgetty/Manifest | 8 | ||||
-rw-r--r-- | net-dialup/mgetty/mgetty-1.1.30.ebuild | 10 |
3 files changed, 15 insertions, 8 deletions
diff --git a/net-dialup/mgetty/ChangeLog b/net-dialup/mgetty/ChangeLog index 47ee0c52d406..bcd670404cdb 100644 --- a/net-dialup/mgetty/ChangeLog +++ b/net-dialup/mgetty/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/mgetty # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v 1.20 2004/01/15 03:49:22 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/ChangeLog,v 1.21 2004/01/23 12:19:24 lanius Exp $ + + 23 Jan 2004; Heinrich Wendel <lanius@gentoo.org> mgetty-1.1.30.ebuild: + change group phone to fax in voice.conf-dist and add group fax to the system 14 Jan 2004; Aron Griffis <agriffis@gentoo.org> mgetty-1.1.30.ebuild: add ~alpha and ~ia64 diff --git a/net-dialup/mgetty/Manifest b/net-dialup/mgetty/Manifest index 237e4ccb94ff..c55b8028591d 100644 --- a/net-dialup/mgetty/Manifest +++ b/net-dialup/mgetty/Manifest @@ -1,8 +1,8 @@ -MD5 d15f374eced938e94de4e85a720ce943 ChangeLog 3202 +MD5 aeef23b10e3d47749f37a324268737c0 mgetty-1.1.30.ebuild 3359 MD5 38b8367360c7a5fd48d2b0d54d21ff0f mgetty-1.1.28.ebuild 2601 -MD5 8cc750c9587faf074eacca4a9c8f9925 mgetty-1.1.30.ebuild 3229 +MD5 dadabbfc8b7ae9114b9a448e48343885 ChangeLog 3353 MD5 ec2f84816306825d125d0c01bd86758d metadata.xml 163 -MD5 504eadb9fddc097570882ddc40a66997 files/digest-mgetty-1.1.28 283 +MD5 bc47f96a12b21b779d57c0c2ad4b6837 files/mgetty-1.1.30-gentoo.diff 2771 MD5 a1e05459ce2d5ff673bad552f355be4f files/mgetty-1.1.28-gentoo.diff 2308 +MD5 504eadb9fddc097570882ddc40a66997 files/digest-mgetty-1.1.28 283 MD5 c9b070dfabf7bd139d53d263f869b4f0 files/digest-mgetty-1.1.30 70 -MD5 bc47f96a12b21b779d57c0c2ad4b6837 files/mgetty-1.1.30-gentoo.diff 2771 diff --git a/net-dialup/mgetty/mgetty-1.1.30.ebuild b/net-dialup/mgetty/mgetty-1.1.30.ebuild index 0b92b0e874ba..af713a93b7b9 100644 --- a/net-dialup/mgetty/mgetty-1.1.30.ebuild +++ b/net-dialup/mgetty/mgetty-1.1.30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/mgetty-1.1.30.ebuild,v 1.8 2004/01/15 03:49:22 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mgetty/mgetty-1.1.30.ebuild,v 1.9 2004/01/23 12:19:24 lanius Exp $ inherit flag-o-matic eutils @@ -20,6 +20,11 @@ LICENSE="GPL-2" KEYWORDS="x86 sparc ~alpha ~ia64" IUSE="doc" +pkg_setup() { + enewgroup fax + enewuser fax -1 /bin/false /dev/null fax +} + src_unpack() { unpack ${A} @@ -32,6 +37,7 @@ src_unpack() { -e 's:\/\* \(\#define CNDFILE "dialin.config"\) \*\/:\1:' \ -e 's:\(\#define FAX_NOTIFY_PROGRAM\).*:\1 "/etc/mgetty+sendfax/new_fax":' \ policy.h-dist > policy.h + sed -i -e "s:phone_group phone:phone_group fax:g" voice/voice.conf-dist } src_compile() { @@ -63,8 +69,6 @@ src_compile() { } src_install () { - enewuser fax - dodir /var/spool dodir /usr/share/info make prefix=${D}/usr \ |