Skip to content

Commit

Permalink
feat: add hicolor-icon-theme
Browse files Browse the repository at this point in the history
hicolor-icon-theme: default fallback theme for FreeDesktop.org icon themes

Log: add hicolor-icon-theme
Issue:
deepin-community/sig-deepin-sysdev-team#372
  • Loading branch information
liushanyang12138 authored and deepin-ci-robot committed Jul 12, 2023
1 parent 5c30f5f commit 7eeb978
Show file tree
Hide file tree
Showing 26 changed files with 10,367 additions and 20 deletions.
345 changes: 345 additions & 0 deletions COPYING

Large diffs are not rendered by default.

138 changes: 138 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
2009-09-25 Alexander Larsson <[email protected]>

* configure.ac:
Bump version to 0.11

2008-03-28 Alexander Larsson <[email protected]>

* index.theme:
Added 256x256 size. (#15231)

2008-03-16 Marc-Andre Lureau <[email protected]>

* autogen.sh: updated to run "configure" with usual maintainer
options.

2007-03-02 Alexander Larsson <[email protected]>

* Makefile.in:
Update configure.ac for autoconf 2.60
Patch from [email protected]

2006-11-22 Alexander Larsson <[email protected]>

* configure.ac:
Bump version to 0.10

2006-11-22 Alexander Larsson <[email protected]>

* Makefile.in:
* index.theme:
Add new contexts from icon naming spec:
animations, categories, emotes, places,
status
Patch from Luca Ferretti <[email protected]>

2006-01-12 Alexander Larsson <[email protected]>

* Makefile (VERSION):
Bump version to 0.9

2005-12-23 Luca Ferretti <[email protected]>

* index.theme:
Sort values for Directories keys (fix gnome bug 315841) and add missing
entries. Now all installed directories should have an entry in this
file.

2005-04-08 Alexander Larsson <[email protected]>

* Makefile.in (ICON_CONTEXTS):
Add emblem subdir

* configure.ac:
Bump version to 0.8

* index.theme:
Add emblem subdir

2005-02-04 Alexander Larsson <[email protected]>

* configure.ac:
Bump version to 0.7

* index.theme (Size):
Fix typos in last version

2005-02-02 Alexander Larsson <[email protected]>

* configure.ac:
Bump version to 0.6

* Makefile.in (ICON_SIZES):
Add 24x24 dirs

* index.theme (Directories):
Add 24x24 version of action, apps, devices, filesystem & mimetypes

2004-04-06 Alexander Larsson <[email protected]>

* configure.ac:
Update to 0.5

2004-04-06 Ross Burton <[email protected]>

* Makefile.in:
Create the stock/* directories.

2004-02-11 Alexander Larsson <[email protected]>

* Makefile.in:
Added back COPYING

2004-02-11 Alexander Larsson <[email protected]>

* Makefile:
* Makefile.in:
* configure.ac:
* install-sh:
Convert to autoconf
Patch from James Henstridge

2004-02-10 Alexander Larsson <[email protected]>

* COPYING:
* Makefile (FILES):
Added GPL license.

2004-02-04 Alexander Larsson <[email protected]>

* Makefile:
Update version to 0.3
Add new dir sizes

* index.theme:
Add stock icon dirs

2002-12-02 Alexander Larsson <[email protected]>

* index.theme:
Rename to hicolor. Add Hidden=true

* Makefile:
Rename to hicolor. Fix up

* README:
Update

2002-05-14 Alex Larsson <[email protected]>

* Makefile (tag):
Added a tag target.

2002-05-14 Alex Larsson <[email protected]>

* Makefile (dist):
Added a dist target.


24 changes: 24 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
ICON_SIZES = 16x16 22x22 24x24 32x32 36x36 48x48 64x64 72x72 96x96 \
128x128 192x192 256x256 512x512 scalable
ICON_CONTEXTS = actions animations apps categories devices emblems emotes \
filesystems intl mimetypes places status stock
STOCK_SUBS = chart code data form image io media navigation net object table text

themedir = $(datadir)/icons/hicolor
dist_theme_DATA = index.theme

EXTRA_DIST = COPYING README NEWS autogen.sh

install-data-hook:
mkdir -p $(DESTDIR)$(themedir)
for dir in $(ICON_SIZES); do \
for ctxt in $(ICON_CONTEXTS); do \
mkdir -p $(DESTDIR)$(themedir)/$$dir/$$ctxt; \
if [ "$$ctxt" = "stock" ]; then \
for sub in $(STOCK_SUBS); do \
mkdir -p $(DESTDIR)$(themedir)/$$dir/$$ctxt/$$sub; \
done \
fi \
done \
done
mkdir -p $(DESTDIR)$(datadir)/icons/hicolor/symbolic/apps
Loading

0 comments on commit 7eeb978

Please sign in to comment.