diff options
author | Alin Năstac <mrness@gentoo.org> | 2005-03-20 18:09:43 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2005-03-20 18:09:43 +0000 |
commit | b82126be0861a528d923a449d085f93edaa49d18 (patch) | |
tree | add789b218b49c70689e9ab48766b46a47401a28 /net-misc/quagga/quagga-0.96.5-r1.ebuild | |
parent | add amd64 keyword (diff) | |
download | gentoo-2-b82126be0861a528d923a449d085f93edaa49d18.tar.gz gentoo-2-b82126be0861a528d923a449d085f93edaa49d18.tar.bz2 gentoo-2-b82126be0861a528d923a449d085f93edaa49d18.zip |
fixed bugs #69900, #70457, #80633, #80636, #80697, #81095 and #83009
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc/quagga/quagga-0.96.5-r1.ebuild')
-rw-r--r-- | net-misc/quagga/quagga-0.96.5-r1.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net-misc/quagga/quagga-0.96.5-r1.ebuild b/net-misc/quagga/quagga-0.96.5-r1.ebuild index 80564580f947..05b4c281ab15 100644 --- a/net-misc/quagga/quagga-0.96.5-r1.ebuild +++ b/net-misc/quagga/quagga-0.96.5-r1.ebuild @@ -1,7 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation -# Copyright 2003-2004 DataCore GmbH +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.96.5-r1.ebuild,v 1.1 2004/10/22 08:16:24 amir Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.96.5-r1.ebuild,v 1.2 2005/03/20 18:09:43 mrness Exp $ inherit eutils @@ -79,7 +78,7 @@ src_compile() { # configure the stuff - ./configure --host=${HOST} \ + ./configure --host=${CHOST} \ --prefix=${D}/usr \ --enable-tcp-zebra \ --enable-nssa \ @@ -117,7 +116,9 @@ src_install() { pkg_postinst() { # empty dir for pid files for the new priv separation auth - install -d -m0755 -o quagga -g quagga ${ROOT}/var/run/quagga + #set proper owner/group/perms even if dir already existed + install -d -m0700 -o ${QUAGGA_USER_NAME} -g ${QUAGGA_GROUP_NAME} ${ROOT}/etc/quagga + install -d -m0755 -o ${QUAGGA_USER_NAME} -g ${QUAGGA_GROUP_NAME} ${ROOT}/var/run/quagga einfo "Sample configuration files can be found in /etc/quagga/sample." einfo "You have to create config files in /etc/quagga before" |