summaryrefslogtreecommitdiffstats
path: root/style
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2021-10-01 14:38:07 +0200
committergregory guy <gregory-tde@laposte.net>2021-10-01 14:38:07 +0200
commit8648781af8e31b5b243e26a7ae42b36b38aa8aed (patch)
treeebd958c73958b45afb7cc6c053ccf9801b97f3b0 /style
parenta5e262a67d56ccb85f8df78d3d1b1b27e889d790 (diff)
downloadtde-style-baghira-8648781af8e31b5b243e26a7ae42b36b38aa8aed.tar.gz
tde-style-baghira-8648781af8e31b5b243e26a7ae42b36b38aa8aed.zip
Drop automake build support.
Deleted TODO and NEWS empty files. Rework of the README file. Add basic cmake build instructions. Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'style')
-rw-r--r--style/Makefile.am16
-rw-r--r--style/configure.in.in5
-rwxr-xr-xstyle/generatePixmaps.sh54
3 files changed, 0 insertions, 75 deletions
diff --git a/style/Makefile.am b/style/Makefile.am
deleted file mode 100644
index 606274c..0000000
--- a/style/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-AM_CPPFLAGS = -DQT_PLUGIN
-
-INCLUDES = -I$(top_srcdir)/tdefx $(all_includes)
-noinst_HEADERS = baghira.h pixmaps.h bitmaps.h
-METASOURCES = AUTO
-kde_style_LTLIBRARIES = baghira.la
-baghira_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
-baghira_la_LIBADD = $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx -lXtst
-baghira_la_SOURCES = baghira.cpp optionHandler.cpp polish.cpp utils.cpp
-lnkdir = $(kde_datadir)/tdestyle/themes
-lnk_DATA = baghira.themerc
-EXTRA_DIST = $(lnk_DATA)
-pixmaps.h: $(srcdir)/generatePixmaps.sh
- $(SHELL) $(srcdir)/generatePixmaps.sh $(top_srcdir)
-CLEANFILES = pixmaps.h
-baghira.lo: pixmaps.h
diff --git a/style/configure.in.in b/style/configure.in.in
deleted file mode 100644
index b0f4a88..0000000
--- a/style/configure.in.in
+++ /dev/null
@@ -1,5 +0,0 @@
-compile_kompmgr=yes
-KDE_CHECK_HEADERS(X11/extensions/Xdamage.h,,compile_kompmgr=no,[#include <X11/Xlib.h>])
-KDE_CHECK_HEADERS(X11/extensions/Xcomposite.h,,compile_kompmgr=no,[#include <X11/Xlib.h>])
-KDE_CHECK_HEADERS(X11/extensions/Xrender.h,,compile_kompmgr=no,[#include <X11/Xlib.h>])
-AM_CONDITIONAL(include_kompmgr, test "$compile_kompmgr" = "yes" )
diff --git a/style/generatePixmaps.sh b/style/generatePixmaps.sh
deleted file mode 100755
index 388b002..0000000
--- a/style/generatePixmaps.sh
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-top_srcdir="${1:-../..}"
-imagebase="$top_srcdir/imagebase"
-UIC=$(grep "UIC = " ../Makefile | cut -f3- -d" ")
-echo -e "#ifndef SPIXMAPS_H\n#define SPIXMAPS_H\n" > pixmaps.h
-$UIC -embed baghira \
-$imagebase/brushed-gradient \
-$imagebase/brushed-tile \
-$imagebase/button-base \
-$imagebase/button-milk \
-$imagebase/button-glow \
-$imagebase/button-jaguar \
-$imagebase/button-shadow \
-$imagebase/checkbox \
-$imagebase/checkboxdown \
-$imagebase/checkbox-milk \
-$imagebase/checkboxdown-milk \
-$imagebase/combo \
-$imagebase/combo-milk \
-$imagebase/combo-jaguar \
-$imagebase/combo-shadow \
-$imagebase/htmlradio \
-$imagebase/htmlradio_down \
-$imagebase/progress \
-$imagebase/progress2 \
-$imagebase/radio \
-$imagebase/radio_down \
-$imagebase/radio-milk \
-$imagebase/radio_down-milk \
-$imagebase/rectbutton \
-$imagebase/roundFrame \
-$imagebase/sbgroove_btm \
-$imagebase/sbgroove_mid \
-$imagebase/sbgroove_top \
-$imagebase/sbIslider_mid \
-$imagebase/sbslider_btm \
-$imagebase/sbslider_btm_shd \
-$imagebase/sbslider_mid \
-$imagebase/sbslider_top \
-$imagebase/sbslider_top_shd \
-$imagebase/sb_subadd \
-$imagebase/sliderarrow \
-$imagebase/sbgroove_btm-milk \
-$imagebase/sbgroove_mid-milk \
-$imagebase/sbgroove_top-milk \
-$imagebase/sbslider_btm-milk \
-$imagebase/sbslider_mid-milk \
-$imagebase/sbslider_top-milk \
-$imagebase/sb_subadd-milk \
-$imagebase/sliderarrow-milk \
-$imagebase/tab \
-$imagebase/tab-milk \
-$imagebase/tab-jaguar >> pixmaps.h
-echo -e "#endif //SPIXMAPS_H\n" >> pixmaps.h