diff options
author | wiz <wiz@pkgsrc.org> | 2009-07-22 09:05:23 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-07-22 09:05:23 +0000 |
commit | 61383771a3b0b8ff0369539d6949809508cfb930 (patch) | |
tree | 5ef57d0d21118c59e6a331df5ff2c78e0207fee2 /misc/xdg-x11-dirs | |
parent | 597015440fa11bf0c0f028fa167af0ce85e93c70 (diff) | |
download | pkgsrc-61383771a3b0b8ff0369539d6949809508cfb930.tar.gz |
Remove USE_DIRS infrastructure support and support packages.
See http://mail-index.netbsd.org/pkgsrc-changes/2009/07/22/msg026834.html.
Diffstat (limited to 'misc/xdg-x11-dirs')
-rw-r--r-- | misc/xdg-x11-dirs/DESCR | 7 | ||||
-rw-r--r-- | misc/xdg-x11-dirs/Makefile | 36 | ||||
-rw-r--r-- | misc/xdg-x11-dirs/dirs.mk | 29 |
3 files changed, 0 insertions, 72 deletions
diff --git a/misc/xdg-x11-dirs/DESCR b/misc/xdg-x11-dirs/DESCR deleted file mode 100644 index 81996046124..00000000000 --- a/misc/xdg-x11-dirs/DESCR +++ /dev/null @@ -1,7 +0,0 @@ -xdg-x11-dirs installs a set of shared directories used by freedesktop.org -XDG based systems (kde 3.2 and gnome 2.4). It is useful to simplify PLIST -handling in other packages. - -This package differs from xdg-dirs in that shared directories are created -under X11's tree. Has no effect if using xpkgwedge, other than depending -directly on xdg-dirs. diff --git a/misc/xdg-x11-dirs/Makefile b/misc/xdg-x11-dirs/Makefile deleted file mode 100644 index 28aad6a8bc2..00000000000 --- a/misc/xdg-x11-dirs/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# $NetBSD: Makefile,v 1.18 2009/04/09 00:48:10 joerg Exp $ -# - -DISTNAME= xdg-x11-dirs-1.4 -CATEGORIES= misc gnome kde -MASTER_SITES= # empty -DISTFILES= # empty - -MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= # empty -COMMENT= Shared XDG directories under the X11 tree - -PKG_DESTDIR_SUPPORT= user-destdir - -CONFLICTS= gnome2-dirs<=1.2 - -NO_BUILD= yes -NO_CONFIGURE= yes -PLIST_SRC= # empty -USE_LANGUAGES= # empty -USE_X11BASE= yes -WRKSRC= ${WRKDIR} - -.include "dirs.mk" -.include "../../mk/bsd.prefs.mk" - -.if ${X11PREFIX} == ${LOCALBASE} -DEPENDS+= xdg-dirs>=1.1:../../misc/xdg-dirs -.else -REQD_DIRS+= ${XDG_X11_DIRS:O:S/^/${PREFIX}\//} -.include "../../mk/x11.buildlink3.mk" -.endif - -do-install: # nothing - -.include "../../mk/bsd.pkg.mk" diff --git a/misc/xdg-x11-dirs/dirs.mk b/misc/xdg-x11-dirs/dirs.mk deleted file mode 100644 index 4f3054466b4..00000000000 --- a/misc/xdg-x11-dirs/dirs.mk +++ /dev/null @@ -1,29 +0,0 @@ -# $NetBSD: dirs.mk,v 1.8 2009/06/14 22:58:05 joerg Exp $ -# -# This file is intended to be included by mk/dirs.mk, not directly by packages. -# - -.if !defined(DIRS_XDG_X11_MK) -DIRS_XDG_X11_MK= # defined - -XDG_X11_DIRS= share/application-registry -XDG_X11_DIRS+= share/applications -XDG_X11_DIRS+= share/desktop-directories -XDG_X11_DIRS+= share/dtds -XDG_X11_DIRS+= share/icons -XDG_X11_DIRS+= share/images -XDG_X11_DIRS+= share/mime-info -XDG_X11_DIRS+= share/pixmaps -XDG_X11_DIRS+= share/pixmaps/backgrounds -XDG_X11_DIRS+= share/sounds -XDG_X11_DIRS+= share/themes - -.if defined(_USE_XDG_X11_DIRS) && !empty(_USE_XDG_X11_DIRS) -DEPENDS+= xdg-x11-dirs>=${_USE_XDG_X11_DIRS}:../../misc/xdg-x11-dirs - -. for dir in ${XDG_X11_DIRS} -PRINT_PLIST_AWK+= /^@pkgdir ${dir:S|/|\\/|g}$$/ { next; } -. endfor -.endif - -.endif # !defined(DIRS_XDG_X11_MK) |