summaryrefslogtreecommitdiff
path: root/wm/enlightenment
AgeCommit message (Collapse)AuthorFilesLines
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2012-01-13Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump.obache1-2/+2
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-2/+2
2011-04-22recursive bump from gettext-lib shlib bump.obache1-2/+2
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
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-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-1/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-63/+1
2008-06-12Add DESTDIR support.joerg1-1/+3
2007-07-04Update to latest stable release (0.16.8.8). Changes from previous:dsieger3-13/+7
- Fix pagers when enabling after initially being disabled - Remove unused backup-....cfg stuf - Fix fallback textclass - Don't crash if trying to start when no theme is found. Add missing newline. - Fix parsing title, name, and class matches in windowmatches.cfg - Remove trailing dash in release version string - Enable setting imlib2 image cache size - Eliminate some remainders from Window re-wrapping done a while back
2007-05-20Update wm/enlightenment to the latest stable release (0.16.8.7)dsieger3-14/+14
2006-12-27- fine grained X11 dependencies for packages which have either USE_IMAKEjoerg1-1/+8
or USE_X11BASE set, but don't include mk/x11.buildlink3.mk directly or via buildlink3.mks - introduce BUILDLINK_PREFIX.libXpm as alias for BUILDLINK_PREFIX.xpm in the !modular case - fix some cases where the check for libX11 couldn't work at all by using C++ for compilation without including the proper headers Verified using a full X11_TYPE=xorg bulk build without additional breakage. Discussed with salo@, wiz@ and send to packages@ for feedback.
2006-12-15Mechanically replace all includes of buildlink3.mk of the followingjoerg1-2/+2
packages with the modular Xorg equivalent. Those are falling back to the old location by default, so this commmit doesn't change dependencies. graphics/xpm ==> x11/libXpm fonts/Xft2 ==> x11/libXft x11/Xfixes ==> x11/libXfixes x11/xcursor ==> x11/libXcursor x11/Xrender ==> x11/libXrender x11/Xrandr ==> libXrandr
2006-12-02Update enlightenment to 0.16.8.4, based on PR 35006.obache5-566/+479
ChangeLog is too long to write here. Note: executable file, config file and directory names are renamed from enlightenment to e16.
2006-07-10Fixed pkglint warnings. etc/* is now installed via CONF_FILES. Bumpedrillig2-8/+8
PKGREVISION.
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-04-17Strip ${PKGLOCALEDIR} from PLISTs of packages that already obeyjlam1-19/+19
PKGLOCALEDIR and which install their locale files directly under ${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries. From now on, pkgsrc/mk/plist/plist-locale.awk will automatically handle transforming the PLIST to refer to the correct locale directory.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-12-02Update HOMEPAGE. Apparently, the domain expired and owner is MIAreed1-2/+2
and the website has been down for a couple weeks.
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-3/+2
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-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
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-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2005-01-11Changes 0.16.7.2:adam5-36/+30
* Make keys used for menu navigation configurable. * Bosnian translation. * Korean translation updates. * Improved dockapp handling. * Improved KDE menu generation. * Bulgarian translation. * Showing desktop support. * Fix remembered settings for slave WM's. * Improved fullscreen window handling. * Fix _XROOT... hack. * Fix selecting "No Background" in background settings dialog. * Add shade/unshade using mouse wheel to title bar actions. * Fix _NET_WM_MOVERESIZE (button case). * Don't update pager if not visible. * Avoid problems due to recursive menus. * Fix button stacking. * Pointer grab fixes. * Fix remembered settings for apps setting WM_WINDOW_ROLE to random like value "---". * Fix some session management property types. * Stack desktop windows below buttons. * Add border frame action handling (enables things like auto shade/unshade). * Fix handling of border parts where text state changes but image state doesn't. * Fix startup position for shaded down- or right-shading windows.
2004-11-15Remove an obsolete part of the post-install target. For some reason, thissketch1-4/+1
was stopping the install on Solaris even though the command itself returned 0. It's no longer necessary now anyway so just remove it.
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-1/+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-08-26update to Enlightenment-0.16.7.1recht6-2549/+508
Based upon PR 26768 by Peter Bex (update to 0.16.7) with fixes/clean-up by me. --- 0.16.7.1 1 --- Remove empty epp/config.h causing trouble on some platforms. Add basic _NET_WM_WINDOW_OPACITY handling. --- 0.16.7.1 0.05 --- Fix button grabs not being released. - Thanks again to Onur Kucuk <onur@delipenguen.net> for finding a way to reproduce this. Fix normal border when fullscreen at startup. --- 0.16.7.1 0.04 --- Fix window placement at (re)start (don't follow transients to leader). - Many thanks to Onur Kucuk <onur@delipenguen.net> for help to track this one down. Use png (not ppm) for image chaching, avoid some code duplication. Debian build updates by Julien Portalier <trash@portalier.com>. Hide menus when switching desktop. 0.16.7 ------------------------------------------------------------------------------- Bye bye Imlib1 and Fnlib. Remove unused clone stuff. Tidy up a bit (removed ancient ChangeLog's and other obsolete stuff). Fix incorrect menu placement (still not ok if deskslide is active). Valgrindings. Fix nastiness when there are more than 16 windows on one desk at startup. Fix desktop background thumbnail caching. Fix some initial desktop setup. Fix random killing when closing iconbox. Attempt to do something about the Restart Placement Bug. Enable showing some grab info. Fix segv in "Advanced Settings" dialog when dialog headers are enabled. Enable showing some menu info for debug (+tidy up some menu state stuff). Debug for tracking area and desktop changes. Debug commands to set/unset pointer grabs.
2004-03-10bl3ifyxtraeme1-7/+7
2004-01-27Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248heinz1-3/+3
2004-01-03Bump package revisions for tiff update.reed1-1/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-12-20Fix build on NetBSD 1.6 which does not have wctype_t type.xtraeme2-1/+60
Patch provided and tested by Soren Jacobsen. This also closes PR pkg/23799.
2003-12-18Update to 0.16.6. This closes PR pkg/23255.xtraeme9-874/+66
Many bugfixes were solved, please review Changelog to see a complete list of changes.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-05-25PKGREVISION++salo6-26/+90
- USE_X11BASE -> USE_X11 - new MASTER_SITES - NOBINMODE -> SHAREMODE - sh(1) fixes to e_cache_clean and e_cache_query - better COMMENT From Soren Jacobsen via PR pkg/21666. - DESCR has 80 columns - remove imlib buildlink2 file, it's pulled in by fnlib - ln -> ${LN}, rm -> ${RM} in PLIST, sort
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-1/+1
2003-05-05Line up PKGREVISION whitespace.jmmv1-2/+2
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz1-2/+2
dependency bumps.
2003-04-27Fix these PLISTs. ${PKGLOCALEDIR} -> ${PKGLOCALEDIR}/locale...cjep1-15/+15
2003-04-27Lint: PKGLOCALEDIR.cjep2-16/+17
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam1-22/+9
have been converted to USE_BUILDLINK2.
2002-03-13Give all packages which depend on "png" a version bump, and updatefredb1-1/+2
all dependencies on packages depending on "png" which contain shared libraries, all for the (imminent) update to the "png" package. [List courtesy of John Darrow, courtesy of "bulk-build".]
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-24I am a triple idiot. The only relevant variable that x11.buildlink.mkjlam1-2/+2
redefines about which buildlink.mk files would care is BUILDLINK_X11_DIR, which points to the location of the X11R6 hierarchy used during building. If x11.buildlink.mk isn't included, then BUILDLINK_X11_DIR defaults to ${X11BASE} (set in bsd.pkg.mk), so its value is always safe to use. Remove the ifdefs surrounding the use of BUILDLINK_X11_DIR in tk/buildlink.mk and revert changes to move x11.buildlink.mk before the other buildlink.mk files.