mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
05ca9d1eae
FancyBox is a tool for displaying images, html content and multi-media in a Mac-style "lightbox" that floats overtop of web page. It was built using the jQuery library. Licensed under both MIT and GPL licenses. Features: - Can display images, HTML elements, SWF movies, iframes and also Ajax requests. - Customizable through settings and CSS. - Groups related items and adds navigation. - If the mouse wheel plugin is included in the page then FancyBox will respond to mouse wheel events as well. - Support fancy transitions by using easing plugin. - Adds a nice drop shadow under the zoomed item. WWW: http://fancybox.net/
26 lines
564 B
Makefile
26 lines
564 B
Makefile
# New ports collection makefile for: fancybox
|
|
# Date created: 2011-05-30
|
|
# Whom: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fancybox
|
|
PORTVERSION= 1.3.4
|
|
CATEGORIES= www
|
|
MASTER_SITES= GOOGLE_CODE
|
|
DISTNAME= jquery.${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= A JavaScript library for image/html/multimedia content display
|
|
|
|
NO_BUILD= yes
|
|
USE_ZIP= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${WWWDIR}/
|
|
cd ${WRKSRC}/${PORTNAME}/ && ${INSTALL_DATA} * ${WWWDIR}/
|
|
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/
|
|
|
|
.include <bsd.port.mk>
|