summaryrefslogtreecommitdiff
path: root/www/p5-Apache-Gallery
AgeCommit message (Collapse)AuthorFilesLines
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-2/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz1-2/+2
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-02-16Fixing PLIST by removing '*.orig' relics from patch stagesno1-2/+2
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-12-15Recursive bump for libltdljoerg1-2/+2
2009-08-26bump revision because of graphics/jpeg updatesno1-2/+2
2009-08-03Fix DESTDIR installationjoerg1-16/+12
2009-07-07adding destdir support and license (artistic, see README)sno1-1/+4
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-8/+1
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-2/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-05-26Second round of explicit pax dependencies. As reminded by tnn@,joerg1-2/+4
many packages used to use ${PAX}. Use the common way of directly calling pax, it is created as tool after all.
2007-02-15No need to directly depend on X11.joerg1-2/+1
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-04-16Make this work w/ Apache2 (and ap2-perl).kim3-11/+306
Remove some HTML output from the code that should be controlled only by the templates ('&nbsp;' when no navigation, extra '<br>' elements). Add controls for directory separator in menus and the text labels for the navigation elements.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz1-2/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2006-01-05Use SUBST framework. XXX Was the sed on Gallery.pm supposed tojoerg1-9/+11
change anything?
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-5/+5
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-09-28Removed trailing white-space.rillig1-2/+2
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam1-2/+2
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-2/+1
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam1-2/+2
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 checksums.wiz1-1/+2
2005-01-23Empty out PKGREVISION (should have been part of previous commit).kim1-2/+2
2005-01-23Upgrade to Apache::Gallery 0.9.1kim5-22/+23
* Report 404 for HEAD requests to non-existing files or directories * Scale images when they are requested from the cache instead of before the index is displayed. * Sort pictures the same way when viewing images as when viewing directories * New option GalleryUnderscoresToSpaces to convert underscores to spaces in the listing of directories. * Remember choosen width by setting a cookie * Two new configuration options GalleryDocFile and GalleryImgFile that makes it possible to configured which filetypes should be displayed. See the documentation for details. * Switched to use Text::Template instead of CGI::FastTemplate, see the UPGRADE file for details. * Create copyright notices on pictures using truetype fonts instead of png images. Font, color and size can be configured. and various bug fixes.
2004-12-20since perl is now built with threads on most platforms, the perl archlibgrant1-2/+2
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-11-12Add 'perl5' to CATEGORIES.seb1-2/+2
2004-10-15Update linkage to libltdl (via imlib2), now in its own package.tv1-2/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-07-10Add reverse sorting of entries.kim3-14/+43
2004-04-12Accept p5-libapreq2 too.kim1-3/+8
2004-04-01Add patch-aa, missed from previous commit.kim1-0/+41
2004-04-01Make Perl packlist used again.kim2-3/+5
Preserve line breaks in directory names (in icon display).
2004-02-11Bump PKGREVISION due to imlib2 update.xtraeme1-2/+2
2004-02-11bl3ifyxtraeme1-4/+4
2004-02-08Require p5-Image-Info 1.15 or later to avoid SEGFAULTS from 1.12.kim1-3/+3
Bump PKGREVISION.
2004-01-03Bump package revisions for tiff update.reed1-2/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-12-04Bump PKGREVISION (libxml2, libxslt and imlib2 were updated).xtraeme1-1/+2
2003-09-21Upgraded to Apache::Gallery 0.7:kim5-57/+74
- Support mod_perl version 1 and 2 (1.99) (Michael Legart) - Send status code 500 on errors, 404 on file not found and make IE show our own errorpage. (Thomas L. Kjeldsen) - Bugfix for directories named "0" (Andreas Plesner Jacobsen) - Added "selection mode". Select images with checkboxes and get a list of filenames. (Peter Andreasen) - Fix to let the module work with perl 5.005 (Aaron) - Do not allow scaling pictures to sizes above their original size (Aaron) - Added GalleryUseFileDate option to make A::G show the files timestamps instead of using the EXIF value (Dennis Haney) - Remember display size when turning Slideshow off (Hans Joergensen) - Nice new layout (Thomas Kjaer) - New option GalleryEXIFMode to control the way EXIF info is displayed. See docs for details (Michael Legart) - Support for the FNumber EXIF value (Thomas Corell) - Added GalleryRootText option to allow changing the name of the root element in the menu (Christopher Knight) - Use Image::Imlib2 instead of Inline::C (Andreas Plesner Jacobsen) - New option GalleryMaxThumbnailsPerPage to limit the number of thumbnails displayed per page. Disabled by default and requires templates update. (Michael Legart) - Bugfix for the GalleryThumbnailSize option. Both height and width max sizes are now obeyed. (David Gee)
2003-09-06Upgrade p5-Apache-Gallery to 0.6.kim5-23/+38
Notable changes: * Apache now internally handles image dispatch which enables use of all Apache caching possibilities * Support the EXIF Orientation key for automatic rotate * Directory comments * New GallerySortBy option to allow sort by time, size etc. * Set width/height on thumbnail images for better performance * InlineDir is no longer configurable using PerlSetVar * Write to the error log if unable to open files in the cache * Added slideshow feature * Moved the cache to one single directory outside the webscope * Allow user to customize the "No info found" message Some people have been reporting problems with Apache segfaulting when displaying images from certain cameras (eg. the Canon G2). The problem can be solved by using Image::Info 1.11 or earlier.
2003-07-22COMMENT should start with a capital letter.martti1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-2/+2
2003-05-05PKGREVISION goes after PKGNAME.jmmv1-2/+2
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz1-1/+2
dependency bumps.
2003-01-28Instead of including bsd.pkg.install.mk directly in a package Makefile,jlam1-2/+3
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>.
2002-10-27Use buildlink2. Use perl5/module.mk.seb1-9/+6
Fix X11 handling: mark with USE_X11 remove inclusion of pkgtools/x11-links/xfree.buildlink2.mk.
2002-09-01Apache::Gallery creates an thumbnail index of each directory andkim7-0/+194
allows viewing pictures in different resolutions. Pictures are resized on the fly and cached.