Provide a Makefile and remove obsolete .kde4 and .qt dirs

This commit is contained in:
Silvan 2023-09-22 21:48:00 +02:00
parent e5d71d27dd
commit 419c2af2bb
5 changed files with 60 additions and 41 deletions

View File

@ -1,2 +0,0 @@
[Migration]
Enabled=false

View File

@ -1,2 +0,0 @@
[Migration]
Enabled=false

View File

@ -1,37 +0,0 @@
[3.3]
libraryPath=/opt/kde3/lib/kde3/plugins/:/usr/bin:/usr/lib/kde3/plugins:/usr/lib/qt3/bin:/usr/lib/qt3/plugins
[Font Substitutions]
arial=helvetica^e
helv=helvetica^e
tms rmn=times^e
[General]
GUIEffects=none^e
embedFonts=true
enableXft=true
font=Bitstream Vera Sans,9,-1,5,50,0,0,0,0,0
style=plastik
useXft=true
[KDE]
contrast=7
kdeAddedLibraryPaths=~/.kde/lib/kde3/plugins/^e/opt/kde3/lib/kde3/plugins/^e
[KWinPalette]
activeBackground=#4db90a
activeBlend=#163403
activeForeground=#ffffff
activeTitleBtnBg=#efefef
frame=#efefef
inactiveBackground=#efefef
inactiveBlend=#d9d9d9
inactiveForeground=#777777
inactiveFrame=#efefef
inactiveTitleBtnBg=#efefef
[Palette]
active=#000000^e#dddfe4^e#ffffff^e#ffffff^e#555555^e#c7c7c7^e#000000^e#ffffff^e#000000^e#ffffff^e#efefef^e#000000^e#74be47^e#ffffff^e#296206^e#52188b^e
disabled=#808080^e#dddfe4^e#ffffff^e#ffffff^e#555555^e#c7c7c7^e#c7c7c7^e#ffffff^e#808080^e#ffffff^e#efefef^e#000000^e#619e3b^e#ffffff^e#296206^e#52188b^e
inactive=#000000^e#dddfe4^e#ffffff^e#ffffff^e#555555^e#c7c7c7^e#000000^e#ffffff^e#000000^e#ffffff^e#efefef^e#000000^e#74be47^e#ffffff^e#296206^e#52188b^e

59
Makefile Normal file
View File

@ -0,0 +1,59 @@
# Makefile for rootfiles
# Copyright (c) 2023 by Silvan Calarco <silvan.calarco@mambasoft.it>
# Released under the terms of the GNU GPLv3 license
PACKAGE=rootfiles
distdir = $(PACKAGE)-$(VERSION)
dist_archive = $(distdir).tar.bz2
include VERSION
# System locations
prefix = /usr
exec_prefix = ${prefix}
sysconfdir = /etc
sbindir = /sbin
bindir = ${exec_prefix}/bin
mandir = ${prefix}/usr/share/man
datadir = ${prefix}/share
iconsdir = ${datadir}/icons/hicolor
initrddir = ${sysconfdir}/rc.d/init.d
sysconfigdir= ${sysconfdir}/sysconfig
localesdir = ${datadir}/locale
srcdir = .
DESTDIR =
INSTALL = /usr/bin/install
INSTALL_PROGRAM = ${INSTALL} -m 755
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_DIR = ${INSTALL} -d -m 755
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
all:
install-dirs:
@$(INSTALL_DIR) $(DESTDIR)/root
install-data:
@$(INSTALL_DATA) .bash_logout $(DESTDIR)$(sysconfdir)/root/.bash_logout
@$(INSTALL_DATA) .bash_profile $(DESTDIR)$(sysconfdir)/root/.bash_profile
@$(INSTALL_DATA) .bashrc $(DESTDIR)$(sysconfdir)/root/.bashrc
install: install-dirs install-data
clean:
rm -f $(dist_archive)
dist: clean
@mkdir /tmp/$(distdir)
@cp -a .bash* /tmp/$(distdir)/
@rm -f $(dist_archive);\
tar cf - -C /tmp $(distdir) | bzip2 -9 -c > $(dist_archive)
@rm -rf /tmp/$(distdir)
@echo "file \`$(dist_archive)' created"
dist-rpm: dist
@rpm_sourcedir=`rpm --eval=%{_sourcedir}`;\
mv -f $(PACKAGE)-$(VERSION).tar.bz2 $$rpm_sourcedir;\
echo "File $$rpm_sourcedir/$(PACKAGE)-$(VERSION).tar.bz2 created."

1
VERSION Normal file
View File

@ -0,0 +1 @@
VERSION=2023.9