pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Github blueimp/Gallery-2.21.3 JavaScript library
Module Name: pkgsrc-wip
Committed By: ast <ast%NetBSD.org@localhost>
Pushed By: ast
Date: Sat Oct 29 15:08:44 2016 +0200
Changeset: 68eb0b4c1a4c4b4101ffba15416d81f63d208342
Added Files:
js-Gallery/DESCR
js-Gallery/Makefile
js-Gallery/PLIST
js-Gallery/distinfo
Log Message:
Github blueimp/Gallery-2.21.3 JavaScript library
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=68eb0b4c1a4c4b4101ffba15416d81f63d208342
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
js-Gallery/DESCR | 6 +++++
js-Gallery/Makefile | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++
js-Gallery/PLIST | 33 +++++++++++++++++++++++
js-Gallery/distinfo | 6 +++++
4 files changed, 122 insertions(+)
diffs:
diff --git a/js-Gallery/DESCR b/js-Gallery/DESCR
new file mode 100644
index 0000000..3ec18e1
--- /dev/null
+++ b/js-Gallery/DESCR
@@ -0,0 +1,6 @@
+js-Gallery is a JavaScript library for touch-enabled, responsive
+and customizable image and video gallery, carousel and lightbox,
+optimized for both mobile and desktop web browsers. It features
+swipe, mouse and keyboard navigation, transition effects, slideshow
+functionality, fullscreen support and on-demand content loading
+and can be extended to display additional content types.
diff --git a/js-Gallery/Makefile b/js-Gallery/Makefile
new file mode 100644
index 0000000..198cfd8
--- /dev/null
+++ b/js-Gallery/Makefile
@@ -0,0 +1,77 @@
+# $NetBSD$
+
+PORTVERSION= 2.21.3
+PKGNAME= js-Gallery-${PORTVERSION}
+DISTNAME= Gallery-${PORTVERSION}
+GITHUB_TAG= v${PORTVERSION}
+MASTER_SITES= ${MASTER_SITE_GITHUB:=blueimp/}
+
+EXTRACT_USING= bsdtar
+
+CATEGORIES= www graphics
+
+MAINTAINER= ast%NetBSD.org@localhost
+HOMEPAGE= https://github.com/blueimp/Gallery/
+COMMENT= JavaScript library to create image/video galleries
+LICENSE= mit
+
+NO_BUILD= yes
+NO_INSTALL_MANPAGES= yes
+
+GALLERY_DIR= share/${PKGBASE}
+INSTALLATION_DIRS= ${GALLERY_DIR}
+INSTALLATION_DIRS+= ${GALLERY_DIR}/css
+INSTALLATION_DIRS+= ${GALLERY_DIR}/img
+INSTALLATION_DIRS+= ${GALLERY_DIR}/js
+INSTALLATION_DIRS+= ${GALLERY_DIR}/js/vendor
+
+WRKSRC= ${WRKDIR}/${DISTNAME}
+
+GALLERY_FILES= ${WRKSRC}/README.md
+GALLERY_FILES+= ${WRKSRC}/LICENSE.txt
+GALLERY_FILES+= ${WRKSRC}/index.html
+GALLERY_FILES+= ${WRKSRC}/package.json
+
+CSS_FILES= ${WRKSRC}/css/blueimp-gallery-indicator.css
+CSS_FILES+= ${WRKSRC}/css/blueimp-gallery-video.css
+CSS_FILES+= ${WRKSRC}/css/blueimp-gallery.css
+CSS_FILES+= ${WRKSRC}/css/blueimp-gallery.less
+CSS_FILES+= ${WRKSRC}/css/blueimp-gallery.min.css
+CSS_FILES+= ${WRKSRC}/css/blueimp-gallery.min.css.map
+CSS_FILES+= ${WRKSRC}/css/demo.css
+
+IMG_FILES= ${WRKSRC}/img/error.png
+IMG_FILES+= ${WRKSRC}/img/error.svg
+IMG_FILES+= ${WRKSRC}/img/loading.gif
+IMG_FILES+= ${WRKSRC}/img/play-pause.png
+IMG_FILES+= ${WRKSRC}/img/play-pause.svg
+IMG_FILES+= ${WRKSRC}/img/video-play.png
+IMG_FILES+= ${WRKSRC}/img/video-play.svg
+
+JS_FILES= ${WRKSRC}/js/blueimp-gallery-fullscreen.js
+JS_FILES+= ${WRKSRC}/js/blueimp-gallery-indicator.js
+JS_FILES+= ${WRKSRC}/js/blueimp-gallery-video.js
+JS_FILES+= ${WRKSRC}/js/blueimp-gallery-vimeo.js
+JS_FILES+= ${WRKSRC}/js/blueimp-gallery-youtube.js
+JS_FILES+= ${WRKSRC}/js/blueimp-gallery.js
+JS_FILES+= ${WRKSRC}/js/blueimp-gallery.min.js
+JS_FILES+= ${WRKSRC}/js/blueimp-gallery.min.js.map
+JS_FILES+= ${WRKSRC}/js/blueimp-helper.js
+JS_FILES+= ${WRKSRC}/js/demo.js
+JS_FILES+= ${WRKSRC}/js/jquery.blueimp-gallery.js
+JS_FILES+= ${WRKSRC}/js/jquery.blueimp-gallery.min.js
+JS_FILES+= ${WRKSRC}/js/jquery.blueimp-gallery.min.js.map
+
+VENDOR_FILES= ${WRKSRC}/js/vendor/jquery.js
+
+MY_DIR= ${DESTDIR}${PREFIX}/share/${PKGBASE}
+
+do-install:
+ for d in ${INSTALLATION_DIRS}; do ${MKDIR} -m 0755 ${PREFIX}/$${d}; done
+ ${INSTALL_DATA} -m 444 ${GALLERY_FILES} ${MY_DIR}
+ ${INSTALL_DATA} -m 444 ${CSS_FILES} ${MY_DIR}/css
+ ${INSTALL_DATA} -m 444 ${IMG_FILES} ${MY_DIR}/img
+ ${INSTALL_DATA} -m 444 ${JS_FILES} ${MY_DIR}/js
+ ${INSTALL_DATA} -m 444 ${VENDOR_FILES} ${MY_DIR}/js/vendor
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/js-Gallery/PLIST b/js-Gallery/PLIST
new file mode 100644
index 0000000..fb61f0b
--- /dev/null
+++ b/js-Gallery/PLIST
@@ -0,0 +1,33 @@
+@comment $NetBSD$
+share/js-Gallery/LICENSE.txt
+share/js-Gallery/README.md
+share/js-Gallery/css/blueimp-gallery-indicator.css
+share/js-Gallery/css/blueimp-gallery-video.css
+share/js-Gallery/css/blueimp-gallery.css
+share/js-Gallery/css/blueimp-gallery.less
+share/js-Gallery/css/blueimp-gallery.min.css
+share/js-Gallery/css/blueimp-gallery.min.css.map
+share/js-Gallery/css/demo.css
+share/js-Gallery/img/error.png
+share/js-Gallery/img/error.svg
+share/js-Gallery/img/loading.gif
+share/js-Gallery/img/play-pause.png
+share/js-Gallery/img/play-pause.svg
+share/js-Gallery/img/video-play.png
+share/js-Gallery/img/video-play.svg
+share/js-Gallery/index.html
+share/js-Gallery/js/blueimp-gallery-fullscreen.js
+share/js-Gallery/js/blueimp-gallery-indicator.js
+share/js-Gallery/js/blueimp-gallery-video.js
+share/js-Gallery/js/blueimp-gallery-vimeo.js
+share/js-Gallery/js/blueimp-gallery-youtube.js
+share/js-Gallery/js/blueimp-gallery.js
+share/js-Gallery/js/blueimp-gallery.min.js
+share/js-Gallery/js/blueimp-gallery.min.js.map
+share/js-Gallery/js/blueimp-helper.js
+share/js-Gallery/js/demo.js
+share/js-Gallery/js/jquery.blueimp-gallery.js
+share/js-Gallery/js/jquery.blueimp-gallery.min.js
+share/js-Gallery/js/jquery.blueimp-gallery.min.js.map
+share/js-Gallery/js/vendor/jquery.js
+share/js-Gallery/package.json
diff --git a/js-Gallery/distinfo b/js-Gallery/distinfo
new file mode 100644
index 0000000..36a4656
--- /dev/null
+++ b/js-Gallery/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (Gallery-2.21.3.tar.gz) = f8777eaf6995c8ba99907f318438ccc2cf4592cf
+RMD160 (Gallery-2.21.3.tar.gz) = a79520bdacd0b1be90e1be1b9136cfe7169bbae3
+SHA512 (Gallery-2.21.3.tar.gz) = bf91683038b6962ae419201c3f0b8ae56ae4eae9b5f1958ad8406c0a3a209985a8d022bfab8dc6b6c2c05f805bfb375f8717a51d39b1c6d443bb630d68a0f62e
+Size (Gallery-2.21.3.tar.gz) = 172130 bytes
Home |
Main Index |
Thread Index |
Old Index