From f1dff899405e7b12f3789585e0cab3640480c937 Mon Sep 17 00:00:00 2001 From: minskim Date: Tue, 11 Oct 2011 19:52:48 +0000 Subject: Import color-theme-6.6.0 as misc/color-theme. color-theme is an emacs-lisp mode for skinning your emacs. Packaged by pho at cielonegro dot org. --- misc/color-theme/DESCR | 7 +++++++ misc/color-theme/MESSAGE | 12 ++++++++++++ misc/color-theme/Makefile | 23 +++++++++++++++++++++++ misc/color-theme/PLIST | 15 +++++++++++++++ misc/color-theme/distinfo | 6 ++++++ misc/color-theme/patches/patch-Makefile | 28 ++++++++++++++++++++++++++++ 6 files changed, 91 insertions(+) create mode 100644 misc/color-theme/DESCR create mode 100644 misc/color-theme/MESSAGE create mode 100644 misc/color-theme/Makefile create mode 100644 misc/color-theme/PLIST create mode 100644 misc/color-theme/distinfo create mode 100644 misc/color-theme/patches/patch-Makefile (limited to 'misc') diff --git a/misc/color-theme/DESCR b/misc/color-theme/DESCR new file mode 100644 index 00000000000..181b1139d88 --- /dev/null +++ b/misc/color-theme/DESCR @@ -0,0 +1,7 @@ +color-theme is an emacs-lisp mode for skinning your emacs. +Features are: + + * Huge and extensible theme library + * Easy to use + * Works on pretty all emacs flavours + * Mature source code diff --git a/misc/color-theme/MESSAGE b/misc/color-theme/MESSAGE new file mode 100644 index 00000000000..1251cb60b3d --- /dev/null +++ b/misc/color-theme/MESSAGE @@ -0,0 +1,12 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1.1.1 2011/10/11 19:52:48 minskim Exp $ + +Append the following lines to your .emacs file: + + (require 'color-theme) + +Then you can choose your color-theme theme by issuing: + + M-x color-theme-select RET + +=========================================================================== diff --git a/misc/color-theme/Makefile b/misc/color-theme/Makefile new file mode 100644 index 00000000000..c6072d49921 --- /dev/null +++ b/misc/color-theme/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2011/10/11 19:52:48 minskim Exp $ +# + +DISTNAME= color-theme-6.6.0 +CATEGORIES= misc +MASTER_SITES= http://download.savannah.gnu.org/releases/${PKGBASE}/ + +MAINTAINER= pho@cielonegro.org +HOMEPAGE= http://www.nongnu.org/color-theme/ +COMMENT= Emacs-lisp mode for skinning your emacs +LICENSE= gnu-gpl-v2 + +PKG_DESTDIR_SUPPORT= user-destdir + +MAKE_JOBS_SAFE= no +USE_LANGUAGES= # none +USE_TOOLS+= gmake + +MAKE_FLAGS+= EMACS=${EMACS_BIN} +MAKE_FLAGS+= ELISPDIR=${DESTDIR}${EMACS_LISPPREFIX}/${PKGBASE} + +.include "../../editors/emacs/modules.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/color-theme/PLIST b/misc/color-theme/PLIST new file mode 100644 index 00000000000..31db93b12b6 --- /dev/null +++ b/misc/color-theme/PLIST @@ -0,0 +1,15 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2011/10/11 19:52:48 minskim Exp $ +${EMACS_LISPPREFIX}/color-theme/color-theme-autoloads.el +${EMACS_LISPPREFIX}/color-theme/color-theme-autoloads.elc +${EMACS_LISPPREFIX}/color-theme/color-theme-example.el +${EMACS_LISPPREFIX}/color-theme/color-theme-example.elc +${EMACS_LISPPREFIX}/color-theme/color-theme-library.el +${EMACS_LISPPREFIX}/color-theme/color-theme-library.elc +${EMACS_LISPPREFIX}/color-theme/color-theme.el +${EMACS_LISPPREFIX}/color-theme/color-theme.elc +${EMACS_LISPPREFIX}/color-theme/themes/color-theme-autoloads.elc +${EMACS_LISPPREFIX}/color-theme/themes/color-theme-example.el +${EMACS_LISPPREFIX}/color-theme/themes/color-theme-example.elc +${EMACS_LISPPREFIX}/color-theme/themes/color-theme-library.el +${EMACS_LISPPREFIX}/color-theme/themes/color-theme-library.elc +${EMACS_LISPPREFIX}/color-theme/themes/color-theme.elc diff --git a/misc/color-theme/distinfo b/misc/color-theme/distinfo new file mode 100644 index 00000000000..44c1a4b6f5e --- /dev/null +++ b/misc/color-theme/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2011/10/11 19:52:48 minskim Exp $ + +SHA1 (color-theme-6.6.0.tar.gz) = 047d6cb207fdef66b25343479ebe09a1ed3954b5 +RMD160 (color-theme-6.6.0.tar.gz) = 82a2c75a65f50f9c5e6d5193c3f768824c6c1549 +Size (color-theme-6.6.0.tar.gz) = 124858 bytes +SHA1 (patch-Makefile) = 728127c250306ca92ad940eb277500f88739b312 diff --git a/misc/color-theme/patches/patch-Makefile b/misc/color-theme/patches/patch-Makefile new file mode 100644 index 00000000000..5a14746c894 --- /dev/null +++ b/misc/color-theme/patches/patch-Makefile @@ -0,0 +1,28 @@ +$NetBSD: patch-Makefile,v 1.1.1.1 2011/10/11 19:52:48 minskim Exp $ + +* Adding "." to the load-path by '--eval' seems not working though I + don't know why. + +* There is no actual texinfo documents so install-info fails + miserably. + +--- Makefile.orig 2006-05-28 13:23:31.000000000 +0000 ++++ Makefile +@@ -47,7 +47,7 @@ $(AUTOLOADFILE).elc: $(AUTOLOADFILE).el + + %.elc: %.el + @$(EMACS) $(OPTIONCOMPILE) \ +- --eval '(setq load-path (cons "." load-path))' \ ++ -L . \ + -f batch-byte-compile $< + + %.info: %.texi +@@ -79,7 +79,7 @@ install-bin: lisp + install -m 0644 $(ALLSOURCE) $(TARGET) $(ELISPDIR) + install -m 0644 $(THEMES_FILES) $(TARGET) $(ELISPDIR)/themes + +-install: install-bin install-info ++install: install-bin #install-info + + ## DO NOT TOUCH THIS ! + ## HELPERS FOR MAINTAINER(S) -- cgit v1.2.3