diff options
author | obache <obache@pkgsrc.org> | 2011-05-25 13:17:36 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-05-25 13:17:36 +0000 |
commit | 789fb1cbb6501d1cc4bbf905ee3f817d85b7149a (patch) | |
tree | cd8692aadd4e1f6c5ff7fa428ecca552ffa0d011 /wm/afterstep | |
parent | f18b2d5706256d70ae3214a153e2a3eeeb44cff1 (diff) | |
download | pkgsrc-789fb1cbb6501d1cc4bbf905ee3f817d85b7149a.tar.gz |
* set LICENSE=mit
* add user-destdir installation support
Diffstat (limited to 'wm/afterstep')
-rw-r--r-- | wm/afterstep/Makefile | 4 | ||||
-rw-r--r-- | wm/afterstep/distinfo | 3 | ||||
-rw-r--r-- | wm/afterstep/patches/patch-src_ASDocGen_Makefile.in | 15 |
3 files changed, 20 insertions, 2 deletions
diff --git a/wm/afterstep/Makefile b/wm/afterstep/Makefile index 8a5cd22fd42..fa1d603d11d 100644 --- a/wm/afterstep/Makefile +++ b/wm/afterstep/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2011/04/22 13:44:54 obache Exp $ +# $NetBSD: Makefile,v 1.52 2011/05/25 13:17:36 obache Exp $ DISTNAME= AfterStep-2.1.2 PKGNAME= ${DISTNAME:S/AfterStep/afterstep/} @@ -10,8 +10,10 @@ EXTRACT_SUFX= .tar.bz2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.afterstep.org/ COMMENT= Window manager based on the look and feel of the NeXTStep interface +LICENSE= mit PKG_INSTALLATION_TYPES= overwrite pkgviews +PKG_DESTDIR_SUPPORT= user-destdir USE_TOOLS+= bash:run gmake perl:run pkg-config GNU_CONFIGURE= yes diff --git a/wm/afterstep/distinfo b/wm/afterstep/distinfo index 97a91304338..dbc447011a6 100644 --- a/wm/afterstep/distinfo +++ b/wm/afterstep/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.13 2011/04/05 12:01:59 wiz Exp $ +$NetBSD: distinfo,v 1.14 2011/05/25 13:17:37 obache Exp $ SHA1 (AfterStep-2.1.2.tar.bz2) = c367e7c73561ddf03b3725f80d2f39f50d2b45bd RMD160 (AfterStep-2.1.2.tar.bz2) = f891ded642b9190bd261f3e3f92cb595da2d785b @@ -8,3 +8,4 @@ SHA1 (patch-ab) = b513b41f5be32170c3e7027d53e44625cbb4958a SHA1 (patch-ac) = bbf8b111e335941f5cf8f3fab28c1e1dcc884713 SHA1 (patch-libAfterImage_export.c) = 0b450561673cb3351c2f8685ba7357cc6a1de366 SHA1 (patch-libAfterImage_import.c) = b8651c189e49c41eeff91bbd3498b79cdb0a7496 +SHA1 (patch-src_ASDocGen_Makefile.in) = 36185b1db36dfda33ef1503d55855e9bbf1ea286 diff --git a/wm/afterstep/patches/patch-src_ASDocGen_Makefile.in b/wm/afterstep/patches/patch-src_ASDocGen_Makefile.in new file mode 100644 index 00000000000..db2cef64705 --- /dev/null +++ b/wm/afterstep/patches/patch-src_ASDocGen_Makefile.in @@ -0,0 +1,15 @@ +$NetBSD: patch-src_ASDocGen_Makefile.in,v 1.1 2011/05/25 13:17:37 obache Exp $ + +* staged installation suuport. + +--- src/ASDocGen/Makefile.in.orig 2004-11-30 22:57:13.000000000 +0000 ++++ src/ASDocGen/Makefile.in +@@ -67,7 +67,7 @@ install.data_html: do_compile + echo "Generating catalogue of installed data files ..." ; \ + old_IMAGE_PATH=$(IMAGE_PATH); old_FONT_PATH=$(FONT_PATH); \ + FONT_PATH="@with_afterdir@/desktop/fonts/:@datadir@/afterstep/desktop/fonts/:/usr/share/fonts/default/TrueType/:@x_libraries@/X11/fonts/TTF"; \ +- IMAGE_PATH="@with_afterdir@/desktop/icons/:@datadir@/afterstep/desktop/icons/:@with_afterdir@/desktop/:@datadir@/afterstep/desktop/:@with_afterdir@/desktop/buttons/:@datadir@/afterstep/desktop/buttons/:@with_afterdir@/backgrounds/:@datadir@/afterstep/backgrounds/:@x_includes@/X11/pixmaps/"; \ ++ IMAGE_PATH="@with_afterdir@/desktop/icons/:$(DESTDIR)@datadir@/afterstep/desktop/icons/:@with_afterdir@/desktop/:$(DESTDIR)@datadir@/afterstep/desktop/:@with_afterdir@/desktop/buttons/:$(DESTDIR)@datadir@/afterstep/desktop/buttons/:@with_afterdir@/backgrounds/:$(DESTDIR)@datadir@/afterstep/backgrounds/:@x_includes@/X11/pixmaps/"; \ + export IMAGE_PATH; export FONT_PATH; \ + ./ASDocGen -t html --data --css data_html_styles.css -S $(AFTER_SHAREDIR) -D $(AFTER_DOC_DIR)/html/data -l /dev/null ; \ + IMAGE_PATH=$(old_IMAGE_PATH); FONT_PATH=$(old_FONT_PATH); \ |