0c7f58ff82
Bump PKGREVISION. PLIST.icons was made based on PR 34178, But entries noted in PLIST.icons were mis-installed from ${WRKDIR}/.buildlink directory, which contained x11 headers, also *.xbm and *.xpm files. Depending on x11 had been removed since rev 1.17 of Makefile. Installed from ${WRKSRC}/.* directories is avoided since rev 1.19 of Makefile.
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.20 2007/06/16 14:39:28 obache Exp $
|
|
|
|
DISTNAME= xpmicons-1.0
|
|
PKGREVISION= 5
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.plig.org/xwinman/ \
|
|
ftp://ftp.cit.gu.edu.au/pub/AIcons/ \
|
|
${MASTER_SITE_SUNSITE:=X11/icons/} \
|
|
http://the-labs.com/AfterStep/
|
|
DISTFILES= icons.tar.gz KDEicons.tgz \
|
|
3d_pixmaps_V1.21.tar.gz StarOffice3.1-icons.tar.gz \
|
|
eicons-1.0.tar.gz kdeicons.tgz wm-icons-0.2.6.tar.gz \
|
|
next-icon_at_gun.com-3Q94-xpm.tar.gz isiconpack4.tgz \
|
|
kiwi_icons.tgz gimp_icons.tgz x11amp_icons.tgz \
|
|
avi-windows-icons.tgz oliphant-neon.tgz
|
|
|
|
MAINTAINER= root@garbled.net
|
|
COMMENT= Huge collection of icons for any windowmanager
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
DIST_SUBDIR= icons
|
|
USE_X11BASE= yes
|
|
NO_BUILD= yes
|
|
|
|
INSTALLATION_DIRS= include/X11/bitmaps include/X11/pixmaps
|
|
|
|
post-extract:
|
|
find ${WRKSRC} -type d -name .xvpics -print | ${XARGS} rm -rf
|
|
|
|
do-install:
|
|
set -e; cd ${WRKSRC}; find * -name \*.xpm -print | \
|
|
while read f; do ${INSTALL_DATA} $$f ${PREFIX}/include/X11/pixmaps; done
|
|
set -e; cd ${WRKSRC}; find * -name \*.xbm -print | \
|
|
while read f; do ${INSTALL_DATA} $$f ${PREFIX}/include/X11/bitmaps; done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|