summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-05-28 14:58:36 +0000
committerThierry Vignaud <tv@mandriva.org>2008-05-28 14:58:36 +0000
commite2823ec46af81c6aa19fed837f5d3ae480e9b584 (patch)
tree16706eb1ad7e3b939b710332332e51ecae4372c1
parentdbf3eedfa26354380361a88d095dab7f02ec0cae (diff)
downloadcontrol-center-e2823ec46af81c6aa19fed837f5d3ae480e9b584.tar
control-center-e2823ec46af81c6aa19fed837f5d3ae480e9b584.tar.gz
control-center-e2823ec46af81c6aa19fed837f5d3ae480e9b584.tar.bz2
control-center-e2823ec46af81c6aa19fed837f5d3ae480e9b584.tar.xz
control-center-e2823ec46af81c6aa19fed837f5d3ae480e9b584.zip
add a wrapper to generate a config file enabling to disabling some icons
-rw-r--r--Makefile4
-rwxr-xr-xgenerate-conf-file.pl22
2 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 81bf9a7e..eb94bd43 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@ NAME = drakconf
SUBDIRS = po pixmaps #data
localedir = $(DESTDIR)/usr/share/locale
mcc_dir = $(DESTDIR)/usr/share/mcc
+SYSCONFDIR = $(DESTDIR)/etc/sysconfig
PERL_VENDORLIB=$(DESTDIR)/$(shell perl -V:installvendorlib | perl -pi -e "s/.*=//; s/[;']//g")
override CFLAGS += -DPACKAGE=\"$(NAME)\" -DLOCALEDIR=\"$(localedir)\"
@@ -34,6 +35,9 @@ install: all
for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done
mkdir -p $(PERL_VENDORLIB)/MDV/
install -m 644 lib/MDV/*.pm $(PERL_VENDORLIB)/MDV/
+ ./generate-conf-file.pl
+ mkdir -p $(SYSCONFDIR)
+ install -m 644 mcc.conf $(SYSCONFDIR)
dis: clean
rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar*
diff --git a/generate-conf-file.pl b/generate-conf-file.pl
new file mode 100755
index 00000000..97527992
--- /dev/null
+++ b/generate-conf-file.pl
@@ -0,0 +1,22 @@
+#!/usr/bin/perl
+
+# Copyright (C) 2008 Mandriva
+# Thierry Vignaud <tvignaud@mandriva.com>
+#
+# This program is free software; you can redistribute it and/or modify it under
+# the terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+use MDK::Common;
+use MDV::Control_Center;
+
+output('mcc.conf', map { s/ /_/g; "ENABLE_$_=yes\n" } sort keys %programs);