summaryrefslogtreecommitdiff
path: root/wm/amiwm
AgeCommit message (Collapse)AuthorFilesLines
2017-01-05Ensure the local yywrap is used. Fixes build with newer flex.jperkin3-5/+23
2015-11-02Add SHA512 digests for distfiles for wm categoryagc1-1/+2
Problems found with existing distfiles: distfiles/fvwm-1.24r.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-02-28Help finding X11 libs.joerg1-2/+2
2015-01-01Use BROKEN_ON_PLATFORM with LP64PLATFORMS.dholland1-2/+2
2013-11-09Mark this NOT_FOR 64-bit platforms; while it builds, gcc output and adholland1-1/+4
quick review of the header files indicates deeply ingrained assumptions about pointers fitting in 32-bit integers, and it does not stand much chance of working.
2013-11-06Fix MAKE_JOBS build.dholland2-1/+26
2013-08-15Fixed pkglint warnings.rillig1-2/+1
2012-10-23Remove xextproto/buildlink3.mk in most cases where it occurs withwiz1-2/+1
libXext/buildlink3.mk, now that it is included there. Leave the places where its API version is set or variables from it are used directly (about 3 packages).
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2010-04-29yywrap() is not allowed to be a macro nowadays.dholland2-1/+15
Fixes broken build on current. XXX: I'd be very surprised if this thing runs on 64-bit platforms.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-2/+1
2009-05-19Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENTwiz1-4/+4
block). Uncomment some commented out LICENSE lines while here.
2008-09-12Set NO_BIN_ON_FTP because pkgsrc modifies the source.gdt1-2/+3
2008-06-12Add DESTDIR support.joerg1-1/+8
2008-04-25Add patch so amiwm won't immediately exit without lucida font.reed3-3/+17
I also sent upstream, but I don't know if this is maintained. (If you use this window manager, please let me know.)
2008-04-14Remove myself as the maintainer for these packages. I haven't usedrh1-2/+2
them for quite some time now.
2007-12-02Some more packages need lex and yacc. Patch by Aleksey Cheusov onrillig1-2/+2
pkgsrc-users.
2007-07-31Fix dependency to and path to ksh. Bump revision.joerg1-2/+5
2007-02-22Whitespace cleanup, courtesy of pkglint.wiz1-4/+4
Patch provided by Sergey Svishchev in private mail.
2007-02-01Modular Xorg support.joerg1-2/+4
2006-04-22Removed the superfluous "quotes" and 'quotes' from variables that don'trillig1-2/+2
need them, for example RESTRICTED and SUBST_MESSAGE.*.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
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-10-23Use "+=" instead of "=" for CPPFLAGS and CONFIGURE_ENV.rillig1-4/+8
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-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2004-08-27Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,jlam1-2/+2
which are the full option names used to set rpath directives for the linker and the compiler, respectively. In places were we are invoking the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is inserted in case the flag is a word, e.g. -rpath. The default values of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the compiler that you use. They may be overridden on a ${OPSYS}-specific basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG, respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-03-10bl3ifyxtraeme1-2/+2
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-2/+2
2003-03-14(1) Publicly export the value of _OPSYS_RPATH_NAME as RPATH_FLAG;jlam1-2/+5
Makefiles simply need to use this value often, for better or for worse. (2) Create a new variable FIX_RPATH that lists variables that should be cleansed of -R or -rpath values if ${_USE_RPATH} is "no". By default, FIX_RPATH contains LIBS, X11_LDFLAGS, and LDFLAGS, and additional variables may be appended from package Makefiles.
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam1-3/+2
have been converted to USE_BUILDLINK2.
2002-03-12Add appropriate RESTRICTED and NO_SRC/BIN linesjmc1-1/+4
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-08-29Use x11.buildlink.mk instead of USE_X11. Also convert hard-coded referencesjlam1-1/+2
to ${X11BASE} in the header and library search paths into references to ${LOCALBASE}/share/x11-links. These packages should now be strongly- buildlinked regardless of whether xpkgwedge is installed. Changes well-tested on NetBSD-1.5X/i386 with and without xpkgwedge and lightly-tested on NetBSD-1.5.1/alpha without xpkgwedge.
2001-06-30Converted to use buildlink.mk stuffzuntum1-1/+2
2001-06-07LICENSE=amiwm-licensejtb1-1/+3
2001-04-17Move to sha1 checksums where appropriate and possible.agc1-2/+3
Add distfile sizes where possible.
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-1/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-12-12Add new category wm for window managers, and move lots of package fromwiz5-0/+49
x11 here. Only changes are: `wm' in category added and some paths fixed.