]> git.ipfire.org Git - people/ms/ipfire-3.x.git/commitdiff
Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-3.x
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 23 Feb 2014 15:37:43 +0000 (16:37 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 23 Feb 2014 15:37:43 +0000 (16:37 +0100)
grep/GREP_COLORS [new file with mode: 0644]
grep/colorgrep.sh [new file with mode: 0644]
grep/grep.nm

diff --git a/grep/GREP_COLORS b/grep/GREP_COLORS
new file mode 100644 (file)
index 0000000..1ef53a6
--- /dev/null
@@ -0,0 +1,4 @@
+# Configuration file for the color grep utility
+
+# 'none' shuts colorization off.
+#COLOR none
diff --git a/grep/colorgrep.sh b/grep/colorgrep.sh
new file mode 100644 (file)
index 0000000..929c78a
--- /dev/null
@@ -0,0 +1,9 @@
+# color-grep initialization
+
+if [ -r /etc/GREP_COLORS ]; then
+       grep -qi "^COLOR.*none" /etc/GREP_COLORS >/dev/null 2>/dev/null && return
+fi
+
+alias grep='grep --color=auto' 2>/dev/null
+alias egrep='egrep --color=auto' 2>/dev/null
+alias fgrep='fgrep --color=auto' 2>/dev/null
index 0aa3427fc80f68f3e4d7b98a3cdce2aa115a70b4..2dea0cc27cb1435fedc043cae8a67d1eb891b1ae 100644 (file)
@@ -4,7 +4,7 @@
 ###############################################################################
 
 name       = grep
-version    = 2.16
+version    = 2.17
 release    = 1
 
 groups     = Applications/Text
@@ -41,6 +41,14 @@ build
        test
                make check
        end
+
+       install_cmds
+               mkdir -pv %{BUILDROOT}%{sysconfdir}/profile.d
+               install -m 644 %{DIR_SOURCE}/colorgrep.sh \
+                       %{BUILDROOT}%{sysconfdir}/profile.d
+               install -m 644 %{DIR_SOURCE}/GREP_COLORS \
+                       %{BUILDROOT}%{sysconfdir}
+       end
 end
 
 packages
@@ -49,11 +57,17 @@ packages
 
                provides
                        /bin/grep
+                       bundled(gnulib)
                end
 
                conflicts
                        filesystem < 002
                end
+
+               configfiles
+                       %{sysconfdir}/profile.d/colorgrep.sh
+                       %{sysconfdir}/GREP_COLORS
+               end
        end
 
        package %{name}-debuginfo