summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoy Marples <uberlord@gentoo.org>2007-05-17 14:52:38 +0000
committerRoy Marples <uberlord@gentoo.org>2007-05-17 14:52:38 +0000
commit99d4c55614de899c61769d2222f58cefe84f6b8f (patch)
tree3fb8c5ae9520b120db0a7e3880eb01cf871dc2bf /sys-freebsd
parentAdded conditional GPAC dependency, thanks to Stefan Huszics (bug #178583). (diff)
downloadgentoo-2-99d4c55614de899c61769d2222f58cefe84f6b8f.tar.gz
gentoo-2-99d4c55614de899c61769d2222f58cefe84f6b8f.tar.bz2
gentoo-2-99d4c55614de899c61769d2222f58cefe84f6b8f.zip
symlink mount_ext2fs to mount_ext3 so we can automatically mount ext3
partitions without journaling support. (Portage version: 2.1.2.7)
Diffstat (limited to 'sys-freebsd')
-rw-r--r--sys-freebsd/freebsd-sbin/ChangeLog6
-rw-r--r--sys-freebsd/freebsd-sbin/freebsd-sbin-6.2-r1.ebuild6
2 files changed, 10 insertions, 2 deletions
diff --git a/sys-freebsd/freebsd-sbin/ChangeLog b/sys-freebsd/freebsd-sbin/ChangeLog
index 3dda8a795ffc..d809162668e6 100644
--- a/sys-freebsd/freebsd-sbin/ChangeLog
+++ b/sys-freebsd/freebsd-sbin/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-freebsd/freebsd-sbin
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog,v 1.37 2007/05/14 14:01:36 uberlord Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog,v 1.38 2007/05/17 14:52:38 uberlord Exp $
+
+ 17 May 2007; Roy Marples <uberlord@gentoo.org> freebsd-sbin-6.2-r1.ebuild:
+ symlink mount_ext2fs to mount_ext3 so we can automatically mount ext3
+ partitions without journaling support.
14 May 2007; Roy Marples <uberlord@gentoo.org> files/ipfw.confd,
files/ipfw.initd:
diff --git a/sys-freebsd/freebsd-sbin/freebsd-sbin-6.2-r1.ebuild b/sys-freebsd/freebsd-sbin/freebsd-sbin-6.2-r1.ebuild
index 81690be63d95..481c46d02cff 100644
--- a/sys-freebsd/freebsd-sbin/freebsd-sbin-6.2-r1.ebuild
+++ b/sys-freebsd/freebsd-sbin/freebsd-sbin-6.2-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/freebsd-sbin-6.2-r1.ebuild,v 1.1 2007/04/06 14:51:22 uberlord Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/freebsd-sbin-6.2-r1.ebuild,v 1.2 2007/05/17 14:52:38 uberlord Exp $
inherit flag-o-matic bsdmk freebsd
@@ -62,6 +62,9 @@ src_install() {
dodir /bin
mv "${D}/sbin/ping" "${D}/bin/" || die "mv failed"
+ # ext2fs can mount ext3, you just don't get the journalling
+ dosym mount_ext2fs sbin/mount_ext3
+
newinitd "${FILESDIR}/devd.initd" devd
newinitd "${FILESDIR}/ipfw.initd" ipfw
newconfd "${FILESDIR}/ipfw.confd" ipfw
@@ -98,4 +101,5 @@ src_install() {
use ipfilter && doperiodic security \
security/*.ipf6denied \
security/*.ipfdenied
+
}