Commit graph

56 commits

Author SHA1 Message Date
dsainty
b887bbc42c It has been a few years since I used Exmh, reset MAINTAINER. 2015-09-03 02:45:23 +00:00
dholland
5d7af50847 Fix message date printing, from PR 49479; submitted upstream.
From Robert Elz.
PKGREVISION++
2014-12-27 00:20:06 +00:00
adam
41e677f366 Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
wiz
e0b49a2fed Bump PKGREVISION for libXft changes for NetBSD native X support on
NetBSD 6, requested by tron.
2013-06-06 12:53:40 +00:00
tron
a36fb86593 Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:
Recursively bump package revisions again after the "freetype2" and
"fontconfig" handling was fixed.
2013-06-04 22:15:37 +00:00
wiz
53745b22ea Bump freetype2 and fontconfig dependencies to current pkgsrc versions,
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.

While doing that, also bump freetype2 dependency to current pkgsrc
version.

Suggested by tron in PR 47882
2013-06-03 10:05:17 +00:00
asau
d70c8e374b Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days. 2012-10-08 12:19:01 +00:00
marino
f162cdcb03 Recursive PKGREVISION bump for tcl and tk upgrade to 8.5.12 2012-08-21 23:49:18 +00:00
dsainty
80bc0ecce5 Simplify installation target and fix DESTDIR case.
Patch supplied by joerg@ in email
2008-04-13 03:49:01 +00:00
jlam
a80fd13efc Mechanical changes to add DESTDIR support to packages that install
their files via a custom do-install target.
2008-03-04 17:57:17 +00:00
joerg
1d8e23336c Modular Xorg support. 2007-02-15 14:46:27 +00:00
rillig
2829e658f2 Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.

Fixes PR 35265, although I did not use the patch provided therein.
2007-01-07 09:13:46 +00:00
dsainty
f9b43d1974 Update to Exmh 2.7.2:
* 2.7.2 More bug fixes, plus some performance improvements for the new
        sequences code added in 2.6. The exmh-strip utility is integrated as
        "Save/Extract Attachments".
* 2.7.1 (Wasn't officially released in tarball form.)
* 2.7.0 Accumulates over a year of minor fixes in the CVS tree.

Also fix some pkglint complaints, and take maintainership.
2006-10-20 08:15:14 +00:00
markd
96116728fc We are installing scripts, not programs. 2006-10-19 07:52:34 +00:00
dsainty
012ce79b70 Rather than use a separate install script, move the installation code into the
Makefile (like usual).  As part of this, we can now use the various INSTALL_*
definitions instead of the hard-coded ones in the script.

The only functional change is that all the files are now installed with Pkgsrc
default ownership, instead of hard-coded "bin:bin".  However, this does mean
that non-root installation can now work, which is a good thing.
2006-10-13 14:41:39 +00:00
jlam
9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
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-03-04 21:28:51 +00:00
joerg
5911def816 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rillig
b71a1d488b Fixed pkglint warnings. The warnings are mostly quoting issues, for
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-12-05 20:49:47 +00:00
jlam
95fd1f6ec9 Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.
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-06-01 18:02:37 +00:00
wiz
b8e0eb28f4 Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to be
useful.
2005-03-24 21:12:50 +00:00
minskim
c31a9eaccf We don't have the tk80 category; replace it with tk. 2005-01-22 15:45:59 +00:00
perry
dde39b2dc1 This can work fine with normal tk -- it does not need tk83 2005-01-08 16:53:25 +00:00
minskim
2827f5b2d8 Enable tk84 and replace x11/tk with x11/tk83. Packages compatible
with 8.4 will be updated to depend on x11/tk after Tk update.
2004-03-08 20:27:13 +00:00
dsainty
7e1176fce6 Adjust comment, exmh will also support security/gnupg if present 2003-11-22 09:50:19 +00:00
grant
0155927c43 s/netbsd.org/NetBSD.org/ 2003-07-17 21:41:05 +00:00
jschauma
e366d0c694 Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.
2003-06-02 01:15:31 +00:00
agc
ebda724b34 Update exmh package from 2.5 to 2.6.3.
Requested by Steve Bellovin in PR 21507

Changes from previous version:

2.6.3	fixes a UI pause problem introduced in 2.6
2.6.2	bug fixes
2.6.1	generalised sequence handling
	- replace the "unseen" window with a sequences window, and add a
	Sequence menu.
	- display number of unseen messages in folder cache
2.6	Add a Sequences menu, and internal overhaul of sequence handling
2003-05-12 20:40:17 +00:00
wiz
bee36ac215 Rename metamail package from 'mm' to 'metamail'. Closes pkg/17030. 2002-05-26 10:42:39 +00:00
agc
a15f55698b Since the build and install scripts are executed directly by the package
Makefile, move them from scripts/ to files/ to make it obvious that the
scripts invocations in bsd.pkg.mk are not being used.
2001-10-26 11:46:54 +00:00
agc
400b55c0ac Fix the pathname for the wish binary, prompted by Steve Bellovin. 2001-10-22 21:37:59 +00:00
agc
302518116b Upgrade from version 2.1.1 to 2.5 of exmh, as prompted by Steve
Bellovin in PR 13990.  Changes are bug fixes, and a few enhancements,
a lot of them related to PGP and gpg.  This upgrade also closes the
security hole in 2.1.1.
2001-10-11 09:26:03 +00:00
jlam
022d07a536 Mechanical changes of tk DEPENDS:
tk-8.3.2  -> tk>=8.3.2
	tk-[0-9]* -> tk>=8.0
	tk-8.*    -> tk>=8.0
2001-05-05 19:51:13 +00:00
wiz
a13ea108bb Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT. 2001-02-17 17:52:59 +00:00
jwise
693068d2f8 Adapt this package to tk-8.3.2. 2000-08-31 16:30:44 +00:00
kim
0726f83164 Reapply my changes from revision 1.20 2000-03-07 20:18:42 +00:00
wulf
489c4a55f0 cleanout redundant code 2000-03-06 10:21:32 +00:00
kim
cf1a283b68 Fix version dependencies (new nmh). 2000-03-02 05:19:55 +00:00
agc
5b206088eb Upgrade the exmh package to version 2.1.1. Fixes PR 8929, from Steve
Bellovin.

Many changes and bug fixes, summarised by Steve as follows:
	Changing options in exmh, and in particular clicking 'save', does
	bad things.  The version of exmh in use is 2.0.2; 2.1.1 is the current
	version.  2.1.1 also has much better pgp support.

Also new master site for distribution files, and all patches have been
applied except one.
2000-01-13 09:17:36 +00:00
wiz
9f0dde4511 reorder lines to silence pkglint 2000-01-09 01:29:54 +00:00
garbled
3fe7edf239 add USE_X11=yes 1999-04-26 18:56:13 +00:00
hubertf
7851215716 nmh is at 1.0 these days 1999-04-05 05:08:59 +00:00
agc
aaac4bc29e Upgrade to tcl version 8.0.5. This seems to be primarily a bug-fix
release.
1999-04-01 13:36:55 +00:00
agc
2cd5eb4894 Remove RUN_DEPENDS from package Makefiles, and replace it with an ordinary
DEPENDS definition.
1998-11-19 15:40:45 +00:00
tsarna
6bd0d65c65 The Grand Homepagification:
- New, optional Makefile variable HOMEPAGE, specifies a URL for
	  the home page of the software if it has one.
	- The value of HOMEPAGE is used to add a link from the
	  README.html files.
	- pkglint updated to know about it.  The "correct" location for
	  HOMEPAGE in the Makefile is after MAINTAINER, in that same
	  section.
1998-08-20 15:16:34 +00:00
tron
603ca57a2c "${MASTER_SITES}" as suggested by Jim Bernard in PR pkg/5964. 1998-08-14 07:45:26 +00:00
agc
b0ae9f3a28 Remove MAN<sect> and CAT<sect> definitions from package Makefiles - these
are unnecessary with automatic manual page handling.
1998-06-18 15:25:24 +00:00
agc
f124a478fd Upgrade to version 2.0.2 of exmh, a tk-based MIME-aware Mail User Agent. 1998-06-17 08:46:04 +00:00
agc
eab89324a5 Include bsd.prefs.mk, so that variables can be set in /etc/mk.conf 1998-06-03 13:07:08 +00:00
agc
6e7b5cf644 Move to relative paths in the pkgsrc tree. 1998-04-24 09:20:33 +00:00
frueauf
49e36ada0b Substitute all obvious FreeBSD ppl as MAINTAINER with packages@netbsd.org. 1998-04-20 11:56:17 +00:00