diff options
author | wiz <wiz@pkgsrc.org> | 2000-12-15 23:25:17 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-12-15 23:25:17 +0000 |
commit | 4f916562128f2e4ab0791b431f2665a9db320eed (patch) | |
tree | b1f363e0cb2dbfbf5db291dbdb569c4dc9fb1c35 /wm/ethemes/Makefile | |
parent | fc32f48c023fa5f0304d143548090c2d6802b9f0 (diff) | |
download | pkgsrc-4f916562128f2e4ab0791b431f2665a9db320eed.tar.gz |
Move three window manager support packages from x11 to wm.
Diffstat (limited to 'wm/ethemes/Makefile')
-rw-r--r-- | wm/ethemes/Makefile | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/wm/ethemes/Makefile b/wm/ethemes/Makefile new file mode 100644 index 00000000000..acecfe568d3 --- /dev/null +++ b/wm/ethemes/Makefile @@ -0,0 +1,52 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/12/15 23:25:19 wiz Exp $ + +DISTNAME= ethemes-0.1 +CATEGORIES= x11 wm +MASTER_SITES= ftp://themes.org/pub/themes/e/ +DISTFILES= ${E_THEMES} + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://e.themes.org/ + +DEPENDS+= enlightenment>=0.16.2:../../wm/enlightenment + +DIST_SUBDIR= ethemes +USE_X11BASE= yes +NO_BUILD= yes +NO_CONFIGURE= yes +NO_PATCH= yes +NO_CHECKSUM= yes +EXTRACT_ONLY= + +E_DATADIR= share/enlightenment/themes + +.include "../../mk/bsd.prefs.mk" + +E_THEMES?= Absolute_E-DR16-199911060830.etheme \ + ApplePlatinum-DR16-200001161300.etheme \ + BevelFree-DR16-199908221339.etheme Black-DR16-199911201455.etheme \ + E-Tech_Hydro-DR16-199912241355.etheme Ebench-DR16-199911181110.etheme \ + Evisio-Green-DR16-199908220707.etheme \ + FinalE-DR16-200003121555.etheme \ + GTK+-DR16-200004271913.etheme \ + HackerPurple138-DR16-199908131917.etheme \ + IReX-DR16-199912221118.etheme Industrial-DR16-199910202053.etheme \ + Sensible-DR16-199908211837.etheme Sunset-DR16-200001061225.etheme \ + X11-DR16-199910131422.etheme \ + arctic-DR16-200006050720.etheme \ + eMac-DR16-199912101635.etheme small-e-DR16-199908230041.etheme + +do-install: +.for FILE in ${E_THEMES} + NAME=`echo ${FILE} | ${SED} -e s/-DR16.*//` ; \ + ${MKDIR} ${PREFIX}/${E_DATADIR}/$$NAME ; \ + ${GTAR} -C ${PREFIX}/${E_DATADIR}/$$NAME \ + -xzf ${DISTDIR}/${DIST_SUBDIR}/${FILE} +.endfor +.for DIR in Absolute_E ApplePlatinum FinalE + cd ${PREFIX}/${E_DATADIR}/${DIR} \ + && ${CHMOD} go+rx `${FIND} . -type d` \ + && ${CHMOD} go+r `${FIND} . -type f` +.endfor + +.include "../../mk/bsd.pkg.mk" |