From: Ray Strode Date: Thu, 29 May 2008 02:59:11 +0000 (-0400) Subject: Rename fedora-fade-in to fade-in X-Git-Tag: 0.1.0~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d76fcfed45401305fbb728d5bdd708df4364b313;p=thirdparty%2Fplymouth.git Rename fedora-fade-in to fade-in The plugin doesn't need to be distro specific --- diff --git a/configure.ac b/configure.ac index 6fc3da23..b86f35a4 100644 --- a/configure.ac +++ b/configure.ac @@ -52,7 +52,7 @@ AC_OUTPUT([Makefile src/libply/Makefile src/splash-plugins/Makefile src/splash-plugins/spinfinity/Makefile - src/splash-plugins/fedora-fade-in/Makefile + src/splash-plugins/fade-in/Makefile src/splash-plugins/text/Makefile src/splash-plugins/details/Makefile src/Makefile diff --git a/scripts/plymouth.spec b/scripts/plymouth.spec index 5b379175..494078ee 100644 --- a/scripts/plymouth.spec +++ b/scripts/plymouth.spec @@ -71,12 +71,12 @@ rm -rf $RPM_BUILD_ROOT %files plugin-fade-in %defattr(-, root, root) -%dir %{_datadir}/plymouth/fedora-fade-in -%{_datadir}/plymouth/fedora-fade-in/bullet.png -%{_datadir}/plymouth/fedora-fade-in/entry.png -%{_datadir}/plymouth/fedora-fade-in/lock.png -%{_datadir}/plymouth/fedora-fade-in/star.png -%{_libdir}/plymouth/fedora-fade-in.so +%dir %{_datadir}/plymouth/fade-in +%{_datadir}/plymouth/fade-in/bullet.png +%{_datadir}/plymouth/fade-in/entry.png +%{_datadir}/plymouth/fade-in/lock.png +%{_datadir}/plymouth/fade-in/star.png +%{_libdir}/plymouth/fade-in.so %files plugin-spinfinity %defattr(-, root, root) diff --git a/src/splash-plugins/Makefile.am b/src/splash-plugins/Makefile.am index e9b876a4..89cead96 100644 --- a/src/splash-plugins/Makefile.am +++ b/src/splash-plugins/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = spinfinity fedora-fade-in text details tests +SUBDIRS = spinfinity fade-in text details tests MAINTAINERCLEANFILES = Makefile.in diff --git a/src/splash-plugins/fade-in/Makefile.am b/src/splash-plugins/fade-in/Makefile.am new file mode 100644 index 00000000..a52e3489 --- /dev/null +++ b/src/splash-plugins/fade-in/Makefile.am @@ -0,0 +1,22 @@ +INCLUDES = -I$(top_srcdir) \ + -I$(srcdir)/../../libply \ + -I$(srcdir)/../.. \ + -I$(srcdir)/.. \ + -I$(srcdir) + +plugindir = $(libdir)/plymouth +plugin_LTLIBRARIES = fade-in.la + +fade_in_la_CFLAGS = $(PLYMOUTH_CFLAGS) -DPLYMOUTH_IMAGE_DIR=\"$(datadir)/plymouth/\" +fade_in_la_LDFLAGS = -module -avoid-version -export-dynamic +fade_in_la_LIBADD = $(PLYMOUTH_LIBS) ../../libply/libply.la +fade_in_la_SOURCES = $(srcdir)/../../ply-boot-splash-plugin.h \ + $(srcdir)/../../ply-window.h \ + $(srcdir)/../../ply-window.c \ + $(srcdir)/plugin.c + +plymouthdir = $(datadir)/plymouth/fade-in +plymouth_DATA = star.png bullet.png entry.png lock.png + +EXTRA_DIST = $(plymouth_DATA) +MAINTAINERCLEANFILES = Makefile.in diff --git a/src/splash-plugins/fedora-fade-in/bullet.png b/src/splash-plugins/fade-in/bullet.png similarity index 100% rename from src/splash-plugins/fedora-fade-in/bullet.png rename to src/splash-plugins/fade-in/bullet.png diff --git a/src/splash-plugins/fedora-fade-in/entry.png b/src/splash-plugins/fade-in/entry.png similarity index 100% rename from src/splash-plugins/fedora-fade-in/entry.png rename to src/splash-plugins/fade-in/entry.png diff --git a/src/splash-plugins/fedora-fade-in/lock.png b/src/splash-plugins/fade-in/lock.png similarity index 100% rename from src/splash-plugins/fedora-fade-in/lock.png rename to src/splash-plugins/fade-in/lock.png diff --git a/src/splash-plugins/fedora-fade-in/plugin.c b/src/splash-plugins/fade-in/plugin.c similarity index 100% rename from src/splash-plugins/fedora-fade-in/plugin.c rename to src/splash-plugins/fade-in/plugin.c diff --git a/src/splash-plugins/fedora-fade-in/star.png b/src/splash-plugins/fade-in/star.png similarity index 100% rename from src/splash-plugins/fedora-fade-in/star.png rename to src/splash-plugins/fade-in/star.png diff --git a/src/splash-plugins/fedora-fade-in/Makefile.am b/src/splash-plugins/fedora-fade-in/Makefile.am deleted file mode 100644 index ec4c09f2..00000000 --- a/src/splash-plugins/fedora-fade-in/Makefile.am +++ /dev/null @@ -1,22 +0,0 @@ -INCLUDES = -I$(top_srcdir) \ - -I$(srcdir)/../../libply \ - -I$(srcdir)/../.. \ - -I$(srcdir)/.. \ - -I$(srcdir) - -plugindir = $(libdir)/plymouth -plugin_LTLIBRARIES = fedora-fade-in.la - -fedora_fade_in_la_CFLAGS = $(PLYMOUTH_CFLAGS) -DPLYMOUTH_IMAGE_DIR=\"$(datadir)/plymouth/\" -fedora_fade_in_la_LDFLAGS = -module -avoid-version -export-dynamic -fedora_fade_in_la_LIBADD = $(PLYMOUTH_LIBS) ../../libply/libply.la -fedora_fade_in_la_SOURCES = $(srcdir)/../../ply-boot-splash-plugin.h \ - $(srcdir)/../../ply-window.h \ - $(srcdir)/../../ply-window.c \ - $(srcdir)/plugin.c - -plymouthdir = $(datadir)/plymouth/fedora-fade-in -plymouth_DATA = star.png bullet.png entry.png lock.png - -EXTRA_DIST = $(plymouth_DATA) -MAINTAINERCLEANFILES = Makefile.in