mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
d63b8277ca
An icon-theme maintained with Xfce in mind, but it supports other desktops like Gnome3 as well. It's a fork of the upstream elementary-project, which took place because the team decided to drop a lot of desktop-specific symlinks. This icon-theme is supposed to keep everything working, but still pull new icons from upstream and integrate them occasionally. WWW: https://github.com/shimmerproject/elementary-xfce PR: 218766 Submitted by: Matthias Petermann <matthias@petermann-it.de>
31 lines
634 B
Makefile
31 lines
634 B
Makefile
# Created by: Matthias Petermann <matthias@petermann-it.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= elementary
|
|
PORTVERSION= 0.8
|
|
DISTVERSIONPREFIX=v
|
|
CATEGORIES= x11-themes xfce
|
|
PKGNAMEPREFIX= xfce-icons-
|
|
|
|
MAINTAINER= matthias@petermann-it.de
|
|
COMMENT= Elementary icons, extended and maintained for Xfce
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= shimmerproject
|
|
GH_PROJECT= elementary-xfce
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/icons \
|
|
"! -name README"
|
|
${FIND} ${STAGEDIR}${PREFIX}/share/icons/ \
|
|
-type d -empty | ${XARGS} ${RMDIR}
|
|
|
|
.include <bsd.port.mk>
|