diff options
author | Tod Neidt <tod@gentoo.org> | 2002-04-03 04:25:43 +0000 |
---|---|---|
committer | Tod Neidt <tod@gentoo.org> | 2002-04-03 04:25:43 +0000 |
commit | e2974cb479027fd7ff6cd60319b6f11520e687db (patch) | |
tree | 53e788495e2035238d43100a8a4d8bad54c458fb /net-ftp | |
parent | remove auto* stuff (diff) | |
download | gentoo-2-e2974cb479027fd7ff6cd60319b6f11520e687db.tar.gz gentoo-2-e2974cb479027fd7ff6cd60319b6f11520e687db.tar.bz2 gentoo-2-e2974cb479027fd7ff6cd60319b6f11520e687db.zip |
Specified rundir in make install. Needed to avoid sandbox violation, 'mkdir /var/run/proftp' on the initial install. See ${S}/Make.rules.
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/proftpd/ChangeLog | 7 | ||||
-rw-r--r-- | net-ftp/proftpd/proftpd-1.2.4-r7.ebuild | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/net-ftp/proftpd/ChangeLog b/net-ftp/proftpd/ChangeLog index b6f201e02fe9..0be3887c48ca 100644 --- a/net-ftp/proftpd/ChangeLog +++ b/net-ftp/proftpd/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for net-ftp/proftpd # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.2 2002/03/18 17:52:44 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.3 2002/04/03 04:25:43 tod Exp $ *proftpd-1.2.4-r7 (18 March 2002) + 2 Apr 2002; Tod Neidt <tod@gentoo.org> proftpd-1.2.4-r7.ebuild : + + Specified rundir in make install, needed to avoid sandbox violation of + 'mkdir /var/run/proftp' on initial install. + 18 March 2002; Donny Davies <woodchip@gentoo.org> proftpd-1.2.4-r7.ebuild : Fix compilation with USE ldap. Closes #722, thanks goto rectrix@rectrix.cx (Tim Hobbs) diff --git a/net-ftp/proftpd/proftpd-1.2.4-r7.ebuild b/net-ftp/proftpd/proftpd-1.2.4-r7.ebuild index ad80b26ddfe0..6a6bf1884a00 100644 --- a/net-ftp/proftpd/proftpd-1.2.4-r7.ebuild +++ b/net-ftp/proftpd/proftpd-1.2.4-r7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.2.4-r7.ebuild,v 1.1 2002/03/18 17:52:44 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.2.4-r7.ebuild,v 1.2 2002/04/03 04:25:43 tod Exp $ S=${WORKDIR}/${P} DESCRIPTION="An advanced and very configurable FTP server" @@ -45,11 +45,15 @@ src_compile() { } src_install() { + + #Note rundir needs to be specified to avoid sanbox violation + #on initial install. See Make.rules make \ prefix=${D}/usr \ sbindir=${D}/usr/sbin \ mandir=${D}/usr/share/man \ localstatedir=${D}/var/run \ + rundir=${D}/var/run/proftp \ sysconfdir=${D}/etc/proftpd \ install || die |