Commit graph

22 commits

Author SHA1 Message Date
rillig
579e977969 Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
2005-12-05 23:55:01 +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
81edaaa606 Create directories before installing files into them. 2005-06-16 06:57:37 +00:00
jlam
585534220c Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:
USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison
2005-05-22 20:07:36 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
agc
4a3d2f7ce2 Add RMD160 digests. 2005-02-23 22:24:08 +00:00
adrianp
5898c6e7f3 - Bump to 1.5.1
- Lots of bugfixes and enhancements:
	- Added drawing of partial trees.
	- Most error and warning messages are now displayed in the graph,
	  instead of being written to stderr.
	- Works with CVSNT.
2004-12-29 11:37:39 +00:00
wiz
6e02d7ee41 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
2004-12-03 15:14:50 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
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-10-03 00:12:51 +00:00
adrianp
7fde6b3e6e - update to v1.4.1
- grab maintainership
- ok'ed wiz@, snj@, schmonz@

Lots of changes, please see http://www.akhphd.au.dk/~bertho/cvsgraph/#changes
for full details.

In brief:

- Implement new option to generate proper maps for different levels of HTML.
- Lots of bug fixes
- Implemented folding of empty branches
- Implemented logentry expansions using %l and %L
- You can now instruct CvsGraph to ommit all revisions that are not tagged
- Configuration no longer requires a configuration file
2004-08-10 15:10:50 +00:00
grant
260be8cb27 this needs flex(1) to build. 2004-07-24 02:53:53 +00:00
xtraeme
1e73555403 Bump PKGREVISION and remove X11 support where appropiate. 2004-06-20 21:52:07 +00:00
snj
c926065b9b Convert to buildlink3. 2004-04-10 23:38:47 +00:00
martti
e69ab8c365 COMMENT should start with a capital letter. 2003-07-21 16:35:12 +00:00
grant
91f00f1cbc s/netbsd.org/NetBSD.org/ 2003-07-17 21:21:03 +00:00
adam
9dbdd6fdc7 Revision bumped because of gd shared library major bump 2003-06-23 10:34:37 +00:00
jlam
d7f69e47ce Instead of including bsd.pkg.install.mk directly in a package Makefile,
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>.
2003-01-28 22:03:00 +00:00
jlam
6ac4dbab54 buildlink1 -> buildlink2 2002-09-21 08:27:25 +00:00
schmonz
a77b81c7cd Update my email address. 2002-07-22 00:13:13 +00:00
fredb
b48eba1112 Give all packages which depend on "png" a version bump, and update
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".]
2002-03-13 17:36:35 +00:00
martti
21b9852e7c Updated cvsgraph to 1.2.0 (provided by Amitai Schlair in pkg/15764)
* The entire tree can now be drawn upside-down. This is usefull if you have
many revisions in a trunk and want to see the latest first. The configuration
includes an option 'upside_down' with a boolean argument. You can override the
default value on the command-line with the '-u' switch, which will negate the
configured value. The imagemap generation also supports this, so you will still
be able to point and shoot on and between the revisions.

* You can now instruct CvsGraph to ommit all revisions that are not tagged.
This is highly usefull for very large trees/trunks to reduce the produced image
size. Note that the first and the last revision in a trunk are not hidden. A
new configuration option 'strip_untagged' with boolean argument enables this
feature. Alternatively, the command-line provides option '-s' wich negates the
value set in the configuration file. You can also strip the first revision if
it is untagged using '-S' and/or strip_first_rev.

* The boxes to identify the branches can now be drawn on both sides of the
trunk. Configuration option 'branch_dupbox' with boolean argument activates
this feature, which is usefull when the tree is drawn upside-down.The
command-line option '-b' negated the configured value.

* Configuration no longer requires a configuration file. All options can now be
entered on the commandline using '-O'. CvsGraph will still read the
configuration file if one is avaliable, but it is no longer an error if none is
found.

* If no file is entered on the command-line, then the input is taken from
standard input, like all decent *nix programs.

* ViewCVS (http://viewcvs.sourceforge.net) is now officially supporting the use
of CvsGraph in their code as of version 0.8. So, no bad hacks needed anymore to
get it working, and it always looks nice :-)

* Implemented string drawing using freetype interface of libgd. It looks very
nice, but it is significantly slower than gd's standard bitmap fonts. Extra
configuration parameters *_ttfont and *_ttsize set font and size. Option
use_ttf enables ttf rendering. Note that gd's bitmap fonts are used as a
fallback in case where the ttfont contains errors or is not found.

* The branch tag color and font can now be set separately using branch_tag_*
configuration options.

* It is now possible to draw the connector lines between the boxes thicker by
setting thick_lines to something else than 1. Maximum thickness is limited to
lines of 11 pixels wide.

* Transparent backgrounds can now be generated by setting transparent_bg option
to true in the configuration.
2002-03-01 12:24:43 +00:00
mjl
6f669560e0 Add cvsgraph 1.1.3
CvsGraph is a utility to make a graphical representation of all
  revisions and branches of a file in a CVS/RCS repository. It has
  been inspired by the 'graph' option in WinCVS.
2001-12-09 14:25:00 +00:00