OpenRC: update to a newer snapshot from Gentoo.

This commit is contained in:
Juan RP
2011-02-11 11:51:08 +01:00
parent 3c953353e9
commit 9f192f5a0e
4 changed files with 3 additions and 181 deletions

View File

@@ -7,7 +7,6 @@ xbps changes:
* Modified inittab to pass correct parameters to reboot(8).
* Sets unicode, rc_logger and rc_shell in /etc/rc.conf by default.
* Sets windowkeys and fix_euro in /etc/conf.d/keymaps by default.
* In local service, start/stop vmware-tools services if script exists.
* The sysfs service mounts /var/run, /var/lock and /var/tmp as tmpfs with
appropiate permissions.
* The bootmisc service no longer cleans up /var/run, as it is now mounted tmpfs.
@@ -70,16 +69,6 @@ xbps changes:
# To fix this, set to "yes"
-fix_euro="NO"
+fix_euro="yes"
--- mk/prog.mk.orig 2009-10-21 11:00:28.000000000 +0200
+++ mk/prog.mk 2009-10-21 11:00:36.000000000 +0200
@@ -17,7 +17,6 @@ _DYNLINK_SH= if test "${PREFIX}" = "" &
fi
_DYNLINK!= ${_DYNLINK_SH}
LDFLAGS+= ${_DYNLINK}$(shell ${_DYNLINK_SH})
-LDFLAGS+= -Wl,-rpath=${PREFIX}/${LIBNAME}
LDFLAGS+= ${PROGLDFLAGS}
CLEANFILES+= ${OBJS} ${PROG}
--- mk/lib.mk.orig 2009-10-21 11:00:57.000000000 +0200
+++ mk/lib.mk 2009-10-21 11:01:17.000000000 +0200
@@ -32,7 +32,7 @@ lib${LIB}.a: ${OBJS} ${STATICOBJS}
@@ -91,32 +80,6 @@ xbps changes:
${SHLIB_NAME}: ${SOBJS}
@${ECHO} building shared library $@
--- conf.d/local.orig 2009-11-27 03:24:48.619351115 +0100
+++ conf.d/local 2009-11-27 03:26:21.519479673 +0100
@@ -5,6 +5,11 @@ local_start() {
# This is a good place to load any misc programs
# on startup (use &>/dev/null to hide output)
+ # Start vmware-tools services if script exists.
+ if [ -x /etc/init.d/vmware-tools ]; then
+ /etc/init.d/vmware-tools start
+ fi
+
# We should always return 0
return 0
}
@@ -13,6 +18,11 @@ local_stop() {
# This is a good place to unload any misc.
# programs you started above.
+ # Stop vmware-tools services if script exists
+ if [ -x /etc/init.d/vmware-tools ]; then
+ /etc/init.d/vmware-tools stop
+ fi
+
# We should always return 0
return 0
}
--- etc/rc.conf.in.orig 2009-12-05 03:30:48.675483763 +0100
+++ etc/rc.conf.in 2009-12-05 03:31:13.034222373 +0100
@@ -18,7 +18,7 @@