mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
Fix palette and backdrops installation in dt/shared with proper symlinks
This commit is contained in:
parent
ec8f4b7464
commit
21cf53c0d0
6 changed files with 17 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
backdropdir = $(CDE_INSTALLATION_TOP)/backdrops
|
||||
backdropdir = $(CDE_INSTALLATION_TOP)/share/backdrops
|
||||
|
||||
dist_backdrop_DATA = Ankh.bm Crochet.pm Lattice.pm Paver.pm SkyLight.pm \
|
||||
Background.bm Foreground.bm Leaves.pm Pebbles.pm Sprinkles.pm \
|
||||
|
@ -6,3 +6,8 @@ BrickWall.bm InlayColor.pm Makefile.am PinStripe.pm SunLogo.pm \
|
|||
Concave.pm InlayPlain.pm NoBackdrop.bm RakedSand.bm Toronto.bm \
|
||||
Convex.pm KnitLight.pm NoBackdrop.pm RicePaper.pm WaterDrops.pm \
|
||||
Corduroy.pm LatticeBig.pm OldChars.pm SkyDark.pm Wooly.pm
|
||||
|
||||
install-data-hook:
|
||||
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/backdrops
|
||||
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/ && $(LN_S) share/backdrops backdrops
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ include ../../templates/backdrops.am
|
|||
|
||||
# Setup a symlink from C -> en_US.UTF-8
|
||||
install-data-hook:
|
||||
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/backdrops/desc.en_US.UTF-8
|
||||
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/backdrops/ && $(LN_S) desc.C desc.en_US.UTF-8
|
||||
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/share/backdrops/desc.en_US.UTF-8
|
||||
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/share/backdrops/ && $(LN_S) desc.C desc.en_US.UTF-8
|
||||
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ include ../../templates/palettes.am
|
|||
|
||||
# link the C version to en_US.UTF-8
|
||||
install-data-hook:
|
||||
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/palettes/desc.en_US.UTF-8
|
||||
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/palettes/ && $(LN_S) desc.C desc.en_US.UTF-8
|
||||
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/share/palettes/desc.en_US.UTF-8
|
||||
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/share/palettes/ && $(LN_S) desc.C desc.en_US.UTF-8
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
BUILT_SOURCES = desc.$(LANG)
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
backdropsdir = $(CDE_INSTALLATION_TOP)/backdrops
|
||||
backdropsdir = $(CDE_INSTALLATION_TOP)/share/backdrops
|
||||
dist_backdrops_DATA = $(BUILT_SOURCES)
|
||||
|
||||
TOP = $(top_builddir)/programs
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
BUILT_SOURCES = desc.$(LANG)
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
palettesdir = $(CDE_INSTALLATION_TOP)/palettes
|
||||
palettesdir = $(CDE_INSTALLATION_TOP)/share/palettes
|
||||
dist_palettes_DATA = $(BUILT_SOURCES)
|
||||
|
||||
TOP = $(top_builddir)/programs
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
palettedir = $(CDE_INSTALLATION_TOP)/palettes
|
||||
palettedir = $(CDE_INSTALLATION_TOP)/share/palettes
|
||||
|
||||
dist_palette_DATA = Alpine.dp Chocolate.dp Grass.dp PBNJ.dp Tundra.dp \
|
||||
Arizona.dp Cinnamon.dp GrayScale.dp Sand.dp Urchin.dp \
|
||||
|
@ -8,3 +8,7 @@ dist_palette_DATA = Alpine.dp Chocolate.dp Grass.dp PBNJ.dp Tundra.dp \
|
|||
Default.dp NorthernSky.dp SkyRed.dp Cabernet.dp Delphinium.dp \
|
||||
Nutmeg.dp SoftBlue.dp Camouflage.dp Desert.dp Olive.dp \
|
||||
SouthWest.dp Charcoal.dp Golden.dp Orchid.dp Summer.dp
|
||||
|
||||
install-data-hook:
|
||||
$(RM) $(DESTDIR)$(CDE_INSTALLATION_TOP)/palettes
|
||||
cd $(DESTDIR)$(CDE_INSTALLATION_TOP)/ && $(LN_S) share/palettes palettes
|
||||
|
|
Loading…
Reference in a new issue