Commit graph

745 commits

Author SHA1 Message Date
wiz
d774725534 Change path from devel/pkgconfig to devel/pkg-config.
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-21 16:29:42 +00:00
minskim
fc27d5c8b5 Update alee-ttf to 4.8. Patch provided by the maintainer, Yi Min-Cheol,
in PR pkg/30798.

Changes:
  - Update Eunjin.ttf
  - Rename Aqu@rk.ttf Bangwool.ttf
  - Rename 09t@ark.ttf 0b0dkuki.ttf
2005-07-21 04:53:34 +00:00
reed
b38e260fd0 Mention "TrueType". 2005-07-20 01:47:17 +00:00
reed
aecb78af5a Add fonts/freefont-ttf: Free UCS Outline Fonts: FreeMono, FreeSans,
and FreeSerif
2005-07-20 01:02:34 +00:00
reed
2db823e2f7 Import fonts/freefont-ttf.
The freefont project provides a set of free, high-quality, outline
(i.e. OpenType) fonts covering the ISO 10646/Unicode UCS (Universal
Character Set).  The set consists of three typefaces: one monospaced
and two proportional -- one with uniform and one with modulated
stroke. These fonts are similar to the Helvetica, Times and Courier
fonts.
2005-07-20 00:59:45 +00:00
grant
e720c400e2 depends should be ../../<category>/<pkg> 2005-07-19 10:11:48 +00:00
jlam
3e474a90d8 Get rid of USE_PERL5. The new way to express needing the Perl executable
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-16 01:19:06 +00:00
jlam
bf9129c41e Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by making
PKGSRC_USE_TOOLS go away.  There is now only a single USE_TOOLS variable
that specifies all of the tools we need to build/run the package.
2005-07-15 18:27:48 +00:00
jlam
7a6521287b Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}.  There is no change to the binary
packages.
2005-07-13 18:01:18 +00:00
adam
abd14448f3 Added patch-ab 2005-06-30 14:36:56 +00:00
adam
7770bdd292 Changes 20050624:
* Bug fixes and improvements
2005-06-30 14:36:27 +00:00
minskim
6c21993bf7 Delete reference to fonts/mkfontscale, which was removed. 2005-06-19 13:57:30 +00:00
jlam
d0915c61c3 Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
2005-06-17 04:49:45 +00:00
jlam
81edaaa606 Create directories before installing files into them. 2005-06-16 06:57:37 +00:00
jlam
b6a0bbbbe5 libXaw on many X11 distributions is linked against libXpm. The linker
should automatically pull in libXpm when -lXaw is given, but it doesn't
seem to work correctly on Darwin.  Modify the xglyph Makefile so that
we explicitly link in -lXpm when we link against -lXaw.  This should
fix the problem noted on Darwin in the bulk builds.  Bump the PKGREVISION
to 4.
2005-06-15 04:43:09 +00:00
jlam
7d6695d6cf Never use docbook2html to regenerate documentation files. That's too
heavy of a build dependency to drag in, and the SGML template files
are not completely standardized.  This should fix PR pkg/29392.
2005-06-07 19:38:52 +00:00
jlam
21b5c21af3 The Xft.h header lives in ${X11BASE}/include/X11/Xft. 2005-06-03 19:13:35 +00:00
jlam
08c60ab83d Coalesce the common makefile code in the builtin.mk file that inspect
the X11 distribution using imake into mk/buildlink3/imake-check.mk.
imake-check.mk calls out to a helper shell script mk/buildlink3/imake-check
that generates the required Imakefiles and runs imake.  Remove the
now extraneous builtin-imake.mk files as the builtin.mk files can now
contain the name of the imake symbol to check.
2005-06-03 19:12:49 +00:00
jlam
c85165ac07 Only check for the existence of the first word of ${IMAKE} since it may
contain a command plus arguments.  We use the standard idiom to extract
the first word of a list stored in a make variable:

	VAR_CMD=	${VAR:C/^/_asdf_/1:M_asdf_*:S/^_asdf_//}

XXX This can be replaced with a more succinct use of variable modifiers
XXX when we update the bootstrap bmake to match the latest NetBSD make
XXX sources, i.e.:
XXX
XXX	VAR_CMD=	${VAR:[1]}
2005-06-03 17:02:36 +00:00
jlam
88aeda0672 Don't require a read-write pkgsrc tree when invoking imake. We avoid
this requirement by using TMPDIR as the read-write location demanded
by using imake.
2005-06-03 16:03:09 +00:00
jlam
fcb7da800b Remove mk/autoconf.mk and mk/automake.mk and replace their usage with
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or
"automake14".  Also, we don't need to call the auto* tools via
${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care
to symlink the correct tool to the correct name, so we can just use
aclocal, autoconf, etc.
2005-06-01 20:07:59 +00:00
jlam
7debfabe11 Use IMAKE_MAKE instead of MAKE to process the makefile generated by imake. 2005-06-01 18:33:02 +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
dillo
9efcb67962 Update to 8.11 (improvments and additions of Cyrillic glyphs) 2005-05-30 14:54:00 +00:00
wiz
0a5188a658 Add RMD160 checksum. 2005-05-25 12:15:37 +00:00
wiz
5815fa25ca Add RMD160 checksum. 2005-05-25 12:11:28 +00:00
wiz
d5eacef007 Add RMD160 checksums. 2005-05-25 09:17:47 +00:00
xtraeme
2f607065ea * There's no need to use a distinfo file for every xorg-fonts*
package anymore, they are using the same distfile.
* Apply patch from Joerg Sonnenberger to fix build/installation on
  DragonFlyBSD -current.

This should fix PR pkg/30254 from Joerg.
2005-05-23 20:53:27 +00:00
adam
6fc19882b0 Changes 20050502:
* Bug fixes
2005-05-23 08:39:50 +00:00
rillig
f795c2e475 Removed trailing white-space. 2005-05-23 08:26:03 +00:00
jlam
e5d77bae83 Remove USE_TOOLS+=gawk from packages that had it added solely for Solaris.
We rely on the tools framework to pull in a good enough awk tool.
2005-05-22 22:06:28 +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
jlam
f35b224a50 SUBST_FILES.* must be relative to ${WRKSRC}. 2005-05-21 04:10:17 +00:00
jlam
68632fc86c Note that this package uses gunzip. 2005-05-20 02:07:30 +00:00
dillo
9e067ec9bc fix do-install target to not require gtar.
note that this package no longer needs gtar.
2005-05-19 19:55:30 +00:00
jlam
bb72166dce This package uses gunzip during extraction. 2005-05-16 18:21:42 +00:00
jlam
32badac7e5 Note the tools that this package uses (gzip, perl, sed). 2005-05-16 18:20:16 +00:00
jlam
7425b543e8 Note that gtar is required by the package. 2005-05-16 01:15:30 +00:00
jlam
419428ec4a Note where gzip or gunzip is required by the package since it isn't
required by default any longer in bsd.pkg.mk under the new tools
framework.
2005-05-15 22:02:26 +00:00
jlam
9fbcfe35cc Use gzcat instead of "gunzip -c" for simplicity. 2005-05-15 21:38:02 +00:00
wiz
383df2d2dc Remove mkfontscale -- nowadays included in both XFree86 and x.org
distributions. Ok by maintainer, rxg.
2005-04-22 18:56:48 +00:00
wiz
995ed3384c Remove ttmkfdir -- obsoleted by ttmkfdir2. 2005-04-22 18:55:11 +00:00
kristerw
c360d873c9 Include converters/libiconv/buildlink3.mk. 2005-04-21 17:40:19 +00:00
dmcmahill
ca005507b3 add LIBGETOPT to LDFLAGS for systems which need devel/libgetopt 2005-04-12 14:27:18 +00:00
dmcmahill
8daea2c9a3 add libiconv buildlink3.mk file. fontconfig directly calls iconv().
Should address the 'fontconfig core dumps' on solaris bug reported in
PR29837
2005-04-12 12:38:40 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
agc
5b65a764c7 Fix a spollo. 2005-04-05 16:10:03 +00:00
hira
3c2a2392ad Don't extract unnecessary part for build. OK'd by xtraeme@. 2005-03-30 20:40:31 +00:00
martti
34b5d4e6d3 Initial version 2005-03-30 16:11:48 +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