de7516716a
pkgsrc change: switch to use devel/ruby-redmine/redmine.mk. 2.14.0 (2021-01-27) * Merged #220: fixed drag & drop behavior. 2.13.0 (2020-09-26) * Replaced node-sass with sass. * Resolved issues with inline-svg function in Node 14.x. 2.12.1 (2020-08-11) Fixes: * Fixed #204 - missing context menu icons in Easy WBS plugin. 2.12.0 (2020-08-01) Fixes: * Fixed #196 and #199: text wrapping in certain column types. * Merged #203: fixed pagination overlapping wiki content. 2.11.0 (2020-05-08) Fixes: * Fixed #179: full screen mode issues when using redmine_wysiwyg_editor plugin. * Fixed #177: changed styling for icon-only buttons to resolve weird behavior on hover. * Fixed checkbox cell padding when issue table borders are enabled. * Added table icon to jstoolbar styles. * Added new .inline-flex class. New: * Added $icon-width variable. * Added margin in some places like after buttons, avatars. * Changed tooltip background to black. * Changed top menu styles. * Restored $color-priorities variable, false by default. * Added parse-length($value, $side) function for extracting length/width from margin/padding/border. * Refactored icons code. * Improved styles for RedmineUP plugins (Agile, Checklists, CRM, Tags). * Improved vertical alignment of certain form elements. * Improved styles for sortable elements. * Improved styles for Redmine Banner plugin. #189. * The most notable change in this release is custom styles for Redmine Agile plugin. It can be disabled by setting $agile-board-customize: false in your custom variables file.
28 lines
916 B
Makefile
28 lines
916 B
Makefile
# $NetBSD: Makefile,v 1.4 2021/02/28 16:20:55 taca Exp $
|
|
|
|
DISTNAME= PurpleMine2-2.14.0
|
|
PKGNAME= ${RUBY_PKGPREFIX}-redmine${RM_VER}-purplemine2-theme-${DISTNAME:S/PurpleMine2-//}
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=mrliptontea/}
|
|
GITHUB_PROJECT= PurpleMine2
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/mrliptontea/PurpleMine2/
|
|
COMMENT= Free Redmine theme for modern browsers
|
|
LICENSE= mit
|
|
|
|
.include "../../meta-pkgs/ruby-redmine-themes/Makefile.common"
|
|
|
|
PM2_DIR= ${RM_THEMEDIR}/purplemine2
|
|
|
|
INSTALLATION_DIRS+= ${PM2_DIR}/favicon ${PM2_DIR}/fonts ${PM2_DIR}/images
|
|
INSTALLATION_DIRS+= ${PM2_DIR}/javascripts ${PM2_DIR}/stylesheets
|
|
|
|
do-install:
|
|
for i in favicon fonts images javascripts stylesheets; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$$i/*.* \
|
|
${DESTDIR}${PREFIX}/${PM2_DIR}/$$i; \
|
|
done
|
|
|
|
.include "../../lang/ruby/rubyversion.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|