summaryrefslogtreecommitdiff
path: root/wm
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2014-11-24 00:37:13 +0000
committerjoerg <joerg@pkgsrc.org>2014-11-24 00:37:13 +0000
commitfbfbee4c533a204a13131752b0b539094b049efc (patch)
tree7f0f79674ee444be13f45b9a18573dbc8788f852 /wm
parentf79dd7db97785bd675ee7f89d2b6ee963f145a9c (diff)
downloadpkgsrc-fbfbee4c533a204a13131752b0b539094b049efc.tar.gz
Remove wmthemes. Doesn't fetch anymore and doesn't use checksums.
Diffstat (limited to 'wm')
-rw-r--r--wm/Makefile3
-rw-r--r--wm/wmthemes/DESCR7
-rw-r--r--wm/wmthemes/Makefile69
3 files changed, 1 insertions, 78 deletions
diff --git a/wm/Makefile b/wm/Makefile
index 9584d4c4562..100680abbc5 100644
--- a/wm/Makefile
+++ b/wm/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.125 2014/08/25 13:59:54 szptvlfn Exp $
+# $NetBSD: Makefile,v 1.126 2014/11/24 00:37:13 joerg Exp $
#
COMMENT= X11 window managers, configuration tools, and themes
@@ -90,7 +90,6 @@ SUBDIR+= wmctrl
SUBDIR+= wmextra
SUBDIR+= wmi
SUBDIR+= wmii
-SUBDIR+= wmthemes
SUBDIR+= wmx
SUBDIR+= wmx-gnome
SUBDIR+= xfce4-wm
diff --git a/wm/wmthemes/DESCR b/wm/wmthemes/DESCR
deleted file mode 100644
index d05c7e49477..00000000000
--- a/wm/wmthemes/DESCR
+++ /dev/null
@@ -1,7 +0,0 @@
-Themes for the window manager WindowMaker.
-
-What exactly are themes?
-----------------------------------
-Themes are a great aspect of WindowMaker allowing a user to simply save the
-entire 'look' of their desktop in a Archive to distribute freely among
-friends, fellow users and/or the whole net in general. :)
diff --git a/wm/wmthemes/Makefile b/wm/wmthemes/Makefile
deleted file mode 100644
index 80733e1df9e..00000000000
--- a/wm/wmthemes/Makefile
+++ /dev/null
@@ -1,69 +0,0 @@
-# $NetBSD: Makefile,v 1.30 2013/04/06 13:24:20 rodent Exp $
-
-#
-# There is no distinfo file because users can specify alternate themes
-# via the "WINDOWMAKER_THEMES" variable.
-#
-
-DISTNAME= wmthemes-0.80.0
-PKGREVISION= 2
-CATEGORIES= x11 wm windowmaker
-MASTER_SITES= http://download.themes.org/wm/
-DISTFILES= ${THEME_FILES}
-
-MAINTAINER= pkgsrc-users@NetBSD.org
-HOMEPAGE= http://wm.themes.org/
-COMMENT= Themes for the window manager WindowMaker
-
-DEPENDS+= windowmaker>=0.80.0nb1:../../wm/windowmaker
-
-WRKSRC= ${WRKDIR}
-DIST_SUBDIR= wmthemes
-
-USE_X11BASE= yes
-NO_BUILD= yes
-NO_CHECKSUM= yes
-
-PLIST_SRC= ${WRKDIR}/PLIST
-THEME_SUBDIRS= Backgrounds IconSets Icons Pixmaps Sounds Styles Themes
-WM_DATADIR= share/WindowMaker
-
-.include "../../mk/bsd.prefs.mk"
-
-BUILD_DEFS+= WINDOWMAKER_THEMES
-
-THEME_FILES=
-.for theme in ${WINDOWMAKER_THEMES}
-THEME_FILES+= ${theme}.tar.gz
-SITES.${theme}.tar.gz= http://download.freshmeat.net/themes/${theme:C/-[^-]*$//}/
-.endfor
-
-do-install:
- @${RM} -f ${PLIST_SRC}
- @${TOUCH} ${PLIST_SRC}
-.for dir in ${THEME_SUBDIRS}
- @if [ -d ${WRKSRC}/${dir} ] && [ -n "`ls ${WRKSRC}/${dir}`" ]; then \
- ${ECHO} "Installing files in directory ${dir}."; \
- cd ${WRKSRC}/${dir}; \
- for file in *; do \
- ${MKDIR} ${DESTDIR}${PREFIX}/${WM_DATADIR}/${dir}; \
- ${INSTALL_DATA} "$$file" ${DESTDIR}${PREFIX}/${WM_DATADIR}/${dir}; \
- ${ECHO} "${WM_DATADIR}/${dir}/$$file" >>${PLIST_SRC}; \
- done; \
- fi
-.endfor
- @cd ${WRKSRC}; \
- for dir in *.themed; do \
- if [ -d "$$dir" ] && [ -n "`${LS} "$$dir"`" ]; then \
- ${ECHO} "Installing \"`${BASENAME} "$$dir" .themed`\" theme."; \
- ${INSTALL_DATA_DIR} "${DESTDIR}${PREFIX}/${WM_DATADIR}/Themes/$$dir"; \
- cd "${WRKSRC}/$$dir"; \
- for file in *; do \
- ${INSTALL_DATA} "$$file" "${DESTDIR}${PREFIX}/${WM_DATADIR}/Themes/$$dir"; \
- ${ECHO} "${WM_DATADIR}/Themes/$$dir/$$file" >>${PLIST_SRC}; \
- done; \
- cd ..; \
- fi; \
- done
-
-.include "../../mk/bsd.pkg.mk"