summaryrefslogtreecommitdiff
path: root/sys-apps/baselayout/files
diff options
context:
space:
mode:
authorBlackNoxis <steven.darklight@gmail.com>2014-02-15 23:24:26 +0200
committerBlackNoxis <steven.darklight@gmail.com>2014-02-15 23:24:26 +0200
commit7224c1253228e5c29c78cb3f0f26ce34770f2356 (patch)
tree1684924656132935256e034f35f92abee6623265 /sys-apps/baselayout/files
Added ebuilds for kogaion desktop
Diffstat (limited to 'sys-apps/baselayout/files')
-rw-r--r--sys-apps/baselayout/files/baselayout-1.12.14-iproute.patch18
-rw-r--r--sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch16
-rw-r--r--sys-apps/baselayout/files/baselayout-2.0.3-slash-run-dir.patch12
-rw-r--r--sys-apps/baselayout/files/baselayout-rogentos-os-release.patch16
4 files changed, 62 insertions, 0 deletions
diff --git a/sys-apps/baselayout/files/baselayout-1.12.14-iproute.patch b/sys-apps/baselayout/files/baselayout-1.12.14-iproute.patch
new file mode 100644
index 00000000..8d148862
--- /dev/null
+++ b/sys-apps/baselayout/files/baselayout-1.12.14-iproute.patch
@@ -0,0 +1,18 @@
+r3179 | vapier | 2010-10-03 17:20:25 -0400 (Sun, 03 Oct 2010) | 1 line
+
+fix infinite recursion with ip invocation #339013 by Krzysztof Olędzki
+
+Index: net-scripts/net/iproute2.sh
+===================================================================
+--- lib/rcscripts/net/iproute2.sh (revision 3178)
++++ lib/rcscripts/net/iproute2.sh (revision 3179)
+@@ -5,7 +5,8 @@
+ # Fix any potential localisation problems
+ # Note that LC_ALL trumps LC_anything_else according to locale(7)
+ ip() {
+- LC_ALL=C ip "$@"
++ # use the full path so we don't recurse into ip()
++ LC_ALL=C $(type -P ip) "$@"
+ }
+ iproute2_tunnel() {
+ LC_ALL=C ip tunnel "$@"
diff --git a/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch b/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch
new file mode 100644
index 00000000..7b7df780
--- /dev/null
+++ b/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch
@@ -0,0 +1,16 @@
+https://bugs.gentoo.org/232823
+http://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/Makefile?r1=3171&r2=3172
+
+--- Makefile
++++ Makefile
+@@ -49,8 +49,9 @@
+ layout:
+ # Create base filesytem layout
+ for x in $(KEEP_DIRS) ; do \
++ test -e $(DESTDIR)$$x/.keep && continue ; \
+ $(INSTALL_DIR) $(DESTDIR)$$x || exit $$? ; \
+- touch $(DESTDIR)$$x/.keep || exit $$? ; \
++ touch $(DESTDIR)$$x/.keep || echo "ignoring touch failure; mounted fs?" ; \
+ done
+ # Special dirs
+ install -m 0700 -d $(DESTDIR)/root || exit $$?
diff --git a/sys-apps/baselayout/files/baselayout-2.0.3-slash-run-dir.patch b/sys-apps/baselayout/files/baselayout-2.0.3-slash-run-dir.patch
new file mode 100644
index 00000000..f6b77567
--- /dev/null
+++ b/sys-apps/baselayout/files/baselayout-2.0.3-slash-run-dir.patch
@@ -0,0 +1,12 @@
+Index: trunk/Makefile
+===================================================================
+--- trunk/Makefile (revision 3193)
++++ trunk/Makefile (working copy)
+@@ -27,6 +27,7 @@
+
+ KEEP_DIRS-Linux += \
+ /dev \
++ /run \
+ /sys \
+ /usr/src
+ KEEP_DIRS = $(KEEP_DIRS-$(OS)) \
diff --git a/sys-apps/baselayout/files/baselayout-rogentos-os-release.patch b/sys-apps/baselayout/files/baselayout-rogentos-os-release.patch
new file mode 100644
index 00000000..1456df72
--- /dev/null
+++ b/sys-apps/baselayout/files/baselayout-rogentos-os-release.patch
@@ -0,0 +1,16 @@
+--- baselayout-2.2.orig/etc.Linux/os-release
++++ baselayout-2.2/etc.Linux/os-release
+@@ -1,7 +1,7 @@
+-NAME=Gentoo
+-ID=gentoo
+-PRETTY_NAME="Gentoo/Linux"
++NAME=Rogentos
++ID=rogentos
++PRETTY_NAME="Rogentos/Linux"
+ ANSI_COLOR="1;32"
+-HOME_URL="http://www.gentoo.org/"
+-SUPPORT_URL="http://www.gentoo.org/main/en/support.xml"
+-BUG_REPORT_URL="https://bugs.gentoo.org/"
++HOME_URL="http://www.rogentos.ro/"
++SUPPORT_URL="http://forum.rogentos.ro/"
++BUG_REPORT_URL="https://bugs.rogentos.ro/"