- Reset MAINTAINER to ports (the fonts should be picked up from FreeBSD,
no need to make it part of the infrastructure).
PR: 89229 [1]
Submitted by: Boris Samorodov <bsam@ipt.ru> [1]
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.
Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.
Preliminary documentation can be found at:
http://people.FreeBSD.org/~ade/autotools.txt
which is in the process of being SGMLized before introduction into the
Porters Handbook.
Light blue touch-paper. Run.
- use MASTER_SITE_FEDORA (pet portlint a little bit)
- while I'm here: SHA256 (no MD5 change, Kris: no need to check :) )
This should also fix the package build of the linux XFree86 bits.
Pointyhat to: netchild [1]
enable it. You must have a Windows License to use it. Bump it to 0.30.
PR: ports/87847
Submitted by: Rostislav Krasny <rosti.bsd@gmail.com>
Approved by: Konstantinos Konstantinidis <konstand@gmail.com> (maintainer)
and new features. Don't believe me? Then see for yourself at
http://www.gnome.org/start/2.12/notes/en/.
DO NOT USE portupgrade by itself to upgrade to GNOME 2.12. Instead, use
the gnome_upgrade.sh script from
http://www.marcuscom.com/downloads/gnome_upgrade212.sh. This script will
circumvent some potential pitfalls users can see if they use portupgrade
by itself.
In keeping with tradition, GNOME 2.12 for FreeBSD comes with a special
splash screen. The winner of this release's contest is
Dominique Goncalves <dominique.goncalves@gmail.com>. His splash screen
was inspired by http://art.gnome.org/contests/2.12-splash/83.
The FreeBSD GNOME Team would lank to thank the following users for
their contributions to this release:
Matthew Luckie <mjl@luckie.org.nz>
ade
sajd on #freebsd-gnome
Caelian on #freebsd-gnome
mnag
Yasuda Keisuke <kysd@po.harenet.ne.jp>
Mark Hobden <markhobden@gmail.com>
Sergey Akifyev <asa@agava.com>
Andreas Kohn
For more information on GNOME on FreeBSD, checkout
http://www.FreeBSD.org/gnome/. The 2.12 documentation will be
posted shortly.
Note: acroread-5 was used to provide the font Symbol, which is not
installed by acroread-7, then users will get messages from mozilla
complaining that there's no Symbol font; anyway, the MathML pages
should be displayed correctly, because the missing characters can be
found in the other fonts.
Suggested by: Yann Golanski <yg2 (at) york.ac.uk>
- Add more encodings fonts like add iso8859-6, ansi-1251, and etc.
- Correct info of font what kind of they are to allow some apps to
search for specific font like monospaced stuff correct. Ex:
Before: [...] mono-medium-r-normal--0-0-0-0-c-0-adobe-standard
After: [...] mono-book-r-monospaced--0-0-0-0-m-0-adobe-standard
Don't ask me why there are no tools (ttmkfdir, mkfontscale, etc) that will
give the same output. What I am doing is merge to the each others for what
they can find encodings stuff, they work together just fine.
Submitted by: ache
Approved by: maintainer (implicit, only fix and add missing encodings
allowed)
currently commented out pkg-install script linux-expat is only a
RUN_DEPENDS rather than a BUILD_DEPENDS so declare it as such instead
of a BUILD_DEPENDS and setting RUN_DEPENDS=${BUILD_DEPENDS}. The latter
caused archivers/rpm and devel/popt to be unnecessarily dragged in as
RUN_DEPENDS (via the included x11-toolkits/linux-gtk/Makefile).
Approved by: netchild
URLs automatically rewritten from /search?dist=Foo or /dist/Foo
to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization,
this is the preferred way to refer to modules on search.cpan.org.
This pass brought to you by http://people.freebsd.org/~fenner/fix-search
add fonts.dir in webfonts/files/. It's easier on us for no prefer
what to use tools. For example, if you install Xorg and why do you
need ttmkfdir when there have mkfontscale and mkfontdir that came
with Xorg?
- Add run fc-cache like bitstream-vera port has, useful for the new
Xorg/XFree86 and other desktops.
- Remove the rename, leave the default alone to avoid cause a few apps crash.
- Move LICENSE in DOCSDIR instead in font directory.
- Remove too many targets, they aren't need and the complicate isn't
need too.
- Correct the extract way, now it will extracting in WRKSRC.
- Remove WITH_NETSCAPE_ALIASES, there's no Netscape 4.x in ports tree.
- A few other cleans up.
BTW: If it causes any different language font problem, please let me know and
I will be happy to try to fix it.
PR: ports/84201
Approved by: Konstantinos Konstantinidis <konstand@gmail.com> (maintainer)
Tested by: keramida (Greek font)
directory after install instead of the ${WRKSRC} after build.
This works around a bug in Xorg's mkfontdir, which lists both -- the
bdf-sources and the pcf-binary fonts -- in the generated fonts.dir.
- USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD
tools to strip binaries anymore, so it's not neccesary anymore to override
STRIP and STRIP_CMD.
- USE_LINUX_PREFIX implies NO_MTREE now.
- In the USE_LINUX case, USE_XLIB now depends upon the linux X11 libraries
instead upon the native FreeBSD libraries.
- The variable LINUX_BASE_PORT contains a string which is suitable as an
item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the
default (or overriden) linux base, ${LINUX_BASE_PORT} should be used
instead of a hardcoded reference.
- Change all ports to comply to the "new world order".
- The Ports Collection now allows to override the default linux_base port.
Specify e.g. OVERRIDE_LINUX_BASE_PORT=rh-9 in /etc/make.conf to use
${PORTSDIR}/emulators/linux_base-rh-9 (the logic is to use
${PORTSDIR}/emulators/linux_base-${OVERRIDE_LINUX_BASE_PORT}).
- If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base
port and if USE_LINUX isn't set to "yes" (case insensitive), the port will
be marked as IGNORE. [1]
- Readd USE_LINUX knobs into several ports and make several uses of a
conditional dependency ("USE_LINUX?=") into an unconditional one
("USE_LINUX=") which where removed/changed by Trevor to allow the use of
alternative linux_base ports. While this is a nice goal, the implementation
resulted in missing dependencies. The OVERRIDE_LINUX_BASE_PORT knob
in this commit is supposed to fix the problem while keeping the feature.
Basicaly this includes a backout of Trevor's commit, to prevent confusion
I mention it here explicitely.
- Use the correct prefix (X11- instead of LOCAL- or LINUX-) for some ports.
Chase dependencies for this.
- Changes to make linux_devtools installable on amd64, remove some stray
device nodes (they don't work on recent OS versions and aren't really
needed).
- Make linux_base-8 PREFIX clean and remove some stray device nodes.
Additionally tell a little bit more about how to setup NIS/YP [2].
- Update the PGSQL dependency in the linux-opengroupware port to a recent
version (the old one isn't available anymore), I don't know if this
works (at least it isn't more broken than before).
- Use PREFIX/usr/share/doc instead of PREFIX/usr/doc in the divx4linux
ports, the former path exists already and gets populated by other
packages too (PREFIX=LINUXPREFIX!).
- Fix some obvious (non-linuxolator) bugs in some linux ports while being
there.
- Bump PORTREVISION where neccesary.
Requested by: portmgr (linimon) [1]
Submittted by: Gerrit Kuehn <gerrit_huehn@gruft.fido.de [2]
Approved by: portmgr (kris, linimon), maintainers (or maintainer timeout)
Tested on: ports cluster (kris)
Reviewed by: silence on emulation@
Superseedes PR: 69997
Maintainer approval from:
chris@chrisburkert.decracauer@cons.org
des
girgen
jamie@bishopston.net
mezz
mi
nivit@users.sf.net
pat
simond@irrelevant.orgriggs@rrr.deUdo.Schweigert@Siemens.com
Ports changes:
- Drop dependency on x11/wrapper. X server already contains this code
(programs/Xserver/os/utils.c rev. 3.58).
- Install default SecurityPolicy with XFree86-4-libraries, thus avoiding
plists and who-owns-what complications between different fooServer ports.
Copy default file to real one if that doesn't exist and remove both upon
uninstall if they are the same.
- Revert change to Imake.rules rev. 3.132 in devel/imake-4 port, since
couple of ports break with this change
(devel/imake-4/files/patch-Imake.rules)
- Add grehans patches for PPC [1]
- Several of directories that were previously in /etc/mtree/BSD.x11-4.dist
were moved to respective ports pkg-plists
PR: [1] 78345, 78346, 78348, 78352, 78353, 78354, 78355, 78356
The MgOpen typefaces are freely available and contain glyphs for viewing
texts in Greek (written in the monotoniko system).
The MgOpen typeface collection is composed of the following typefaces:
- MgOpenCanonica is a serif typeface, based on the design of Times Roman.
- MgOpenCosmetica is a sans-serif typeface, based on the design of Optima.
- MgOpenModata is another sans-serif typeface.
- MgOpenModerna is a sans-serif typeface, based on the design of Helvetica.
Each family contains four fonts, namely all the combinations of regular and
bold weight and upright and italic (or oblique) shape. All the fonts contain
glyphs for the latin and greek alphabets (using the monotoniko system), while
the fonts of the Canonica family also contain all the glyphs necessary for
viewing Greek texts written in the polytoniko system. All the fonts use the
Unicode encoding for characters and are in the TrueType format.
The fonts, in their initial release, have some characters missing (the most
important one being the Euro symbol). These shortcomings will be fixed in
future releases.
WWW: http://www.ellak.gr/fonts/mgopen/
PR: ports/81137
Submitted by: Panagiotis Astithas <past@ebs.gr>
The wqy font includes all the CJK characters covered by the Unicode
Standard 4.0.
This font is created by merging GNU Unifont (by Roman Czyborra
<roman@czyborra.com> and David Starner <dvdeug@debian.org>) with GBK 16 font
from yh-3.1 (Yan Huang Chinese Platform, Redflag Linux,
http://www.redflag-linux.com/).
The CJK Unified Ideographs (U+4E00~U+9FA5) are now complete, and the quality
of the bitmaps has improved significantly.
This release is part of an ongoing effort from the WenQuanYi Project to
create high-quality open-source bitmap Chinese fonts.
Currently only bitmap fonts are available. TTF fonts are in progress.
WWW: http://wqy.sourceforge.net/en/
WWW: http://sitaphi.com/pub/song_jian_biao/
PR: ports/80878
Submitted by: Dryice Liu <dryice@liu.com.cn>
- Change URL of {MASTER,PATCH}_SITES where I distribute sources/patches.
- mkbold/mkitalic: Make portlint happy.
PR: ports/80538
Submitted by: maintainer
fine without explicit version in there, while specifying it can
occasionally confuse (cf. ports/78527). Packages depend on specific
versions of neXtaw and X libraries anyway and ports will get the right
version number through imake.
gone in with X.Org 6.8.2, but since we're using the external libXft
library, it was missed.
Reported by: adamw
Obtained from: Freedesktop.org CVS
Approved by: portmgr (implicit)
Release notes are available at
http://www.x.org/X11R6.8.2/doc/RELNOTES.html
Thanks to kris and krion for running several cluster test builds,
maintainers of GNOME for prompt responses, portmgr for postponing ports
freeze for this update, testers on FreeBSD-X11@ list and others that I
might have mised here.
Also included:
- fix for ATI Mobility on Dell Inspiron 7500 (obtained from Marc Aurele La
France; obtained and tested by julian)
- fix for kbd driver on Sparc64 (tested by Aaron Dudek, Michael G. Jung and
Matthias Muthmann), which still appears to have problems with some
keyboards - so
- fix for kbd driver on PC98 (reported and tested by NAKAJI Hiroyuki; PR
ports/77217)
- fix for i810 on HP D530 (obtained from Egbert Eich; obtained and tested
by Anders Nor Berle; PR ports/74757)
The previous versions can generate corrupted output when the input
BDF font file contains a '%' character. The users should update
this port and rebuild all of BDF files generated by the old ones if any.
Also, the previous versions have a possible format string
vulnerability which can be triggered by a maliciously-crafted BDF
font file.
Reported by: SHIOZAKI Takehiko (st at be dot to),
Tod McQuillin (devin at spamcop dot net)
Suggested by: KANOU Hiroki (kanou at khdd dot net)
Fixed by: caffeine@m13.alpha-net.ne.jp (Author)
Approved by: KOMATSU Shinichiro (maintainer)
Security: the previous versions have a format string vulnerability
Bitstream Cyberbit is a TrueType font. It is an international font, containing
characters from many languages. Each character is encoded with its Unicode
value, according to Unicode 2.0 standards.
Cyberbit was developed by Bitstream to provide Unicode Consortium members with
a test font. It is therefore distributed freely to customers that need advanced
multilingual fonts for testing and other non-commercial uses. Customers that
wish to use Cyberbit for other purposes must license the font from Bitstream.
The easiest way to pick the right font for the job.
Features:
* View as many or as few fonts at once as you like
* Choose font size, text color, background color, bold,
italics, underline, and example text used
* Double-click adds/removes a font (depending on which list
you do it in)
PR: ports/75697
Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
Font cache is not build by default, which makes related lines in
default configure file wrong, which in turn causes xfs to error out
on startup with default file. Tweak generation of said file in a way
that would make proper configuration depending on existance of font
caching code, so that this patch can be sent upstream. [2]
Inspired by: Jose M Rodriguez (josemi at freebsd.jazztel.es) [1]
Bits and pieces for [1] stolen from:
src/etc/rc.d/xfs, apache2 and squid ports
Noticed by: Gary Dunn (knowtree at aloha.com) [2]
little bit and allows to proceed to a more recent linux_base from
a stable (read as: the major bugs should be ironed out or identified
and most linux ports build just fine) source.
It also allows to ship 4.11 with a working linuxolator (the EOLed
linux_base is marked forbidden because of a security hole).
This is a major update, please read UPDATING (and CHANGES if you
develop linux ports).
Changes:
- change the default linux_base from v7 to v8
- add a newer freetype to linux_base-8 for nicer fonts display [1]
- don't let cpio use hardlinks in the linux_base-8 port to quiet some
warnings in some cases [2]
- fix a cut&past error in the linux_base-8 pkg-install script [3]
- convert the binary knob "USE_LINUX" to a version specifier, e.g.
USE_LINUX=<value> specifies a dependency upon
emulators/linux_base-<value>, exceptions are a value of "7" (which
does what you want and adds a dependency to linux_base) and any
value without a corresponding port in
PORTSDIR/emulators/linux_base-<value> (which adds a dependency to
the default linux_base)
- don't implicitly add USE_LINUX with the USE_LINUX_PREFIX knob,
this allows us to use the USE_LINUX_PREFIX knob for linux_base and
paves the way for splitting up future linux base ports into
individual pieces
- remove RESTRICTED from some GPL licensed ports, even when we only
distribute binaries, we get them from official linux sites, so
anyone can grab them there if he needs to
- add a dependency upon the linux X11 bits where necessary (based upon
guesswork)
- don't use USE_X_PREFIX in some linux ports since it adds a dependency
to the FreeBSD X11 libs, as a workaround use PREFIX?= (the clean
solution would be to remove the implicit USE_XLIB from USE_X_PREFIX)
- bump the portrevision of the linux ports ("better safe than sorry"
algorithm)
- pass maintainership of the important linux infrastructure to a
mailinglist, hijack freebsd-emulation@ for this purpose (if somebody
doesn't like this: tell us your bikeshed color at freebsd-emulation@,
my color would be "linuxolator@" in case someone cares...)
- add a pkg-install script for linux-fontconfig, but don't use it;
everything should work without it (the FreeBSD fc-cache program should
do all the work), but in case we need it we just need to decomment the
pkg-install part in the Makefile
- fix some dependencies
- fix some bugs
- add some static plists
- unbreak the ports with dependecies to more than one linux_base
This also fixes some ports which are marked BROKEN because of dependencies
to v7 and v8 of linux_base at the same time.
Known bugs:
- the linux-mesa and linux-devtools ports install libGL*.so symlinks
- some "minor" plist bugs (e.g. ld.so.{conf,cache} are modified by
the linux X11 port, so linx_Base-8 moans at deinstall time)
Future work (interested souls should coordinate with freebsd-emulation@):
- add some kind of USE_LINUX_X11 knob to streamline the X11 dependencies,
or modify the behavior of USE_XLIB in the USE_LINUX case
AFAIK trevor has some patches.
- make USE_XLIB and USE_X_PREFIX orthogonal to be able to get rid of
the PREFIX?= workaround in some linux ports
Should be discussed/coordinated on/with x11@.
- move the RPM bits from x11-toolkits/linux-gtk/Makefile to PORTSDIR/Mk/
- update to a more recent linux base
PR: 69997, 70539 (and maybe others)
Discussed with/on: java@, x11@, trevor, portmgr
Tested by: mezz, portmgr, pointyhat
RPM hunted down by: Joseph Gelinas <scirocco@tasam.com> [1]
Requested by: portmgr [2]
Submitted by: kris [3]
Approved by: portmgr
The DejaVu fonts are a font family based on the Bitstream Vera Fonts. Its
purpose is to provide a wider range of characters while maintaining the
original look and feel through the process of collaborative development
DRI drivers are incompatible with the old libGL in XFree86, they have been
repocopied to graphics/xfree86-dri. Also note that with this commit the html
manpages are going away, and with it the runtime dependency on perl for the
imake port.
Release notes at: http://www.x.org/X11R6.8.1/RELNOTES.txt
Props to: kris (multiple cluster runs and sorting through logs)
lesi (fixing all the issues in those logs, and more)
This is set of improved artwiz fonts.
They are compatible with the latest fontconfig/Xft-2.0.
Thus the artwiz fonts work in gtk2/kde3 applications.
PR: ports/71083
Submitted by: Herbert J. Skuhra <herbert.skuhra@gmx.at>
This is set of improved artwiz fonts.
They are compatible with the latest fontconfig/Xft-2.0.
Thus the artwiz fonts work in gtk2/kde3 applications.
PR: ports/71084
Submitted by: Herbert J. Skuhra <herbert.skuhra@gmx.at>
CJK TrueType fonts look prettier. Various enhancements like bold, italic,
readability, and embedded bitmap font help a CJK X desktop a great deal.
To enable this patchset, define WITH_CJK while building these ports (pango,
fontconfig, libXft, and freetype2).
PR: 73083
Submitted by: clive
Obtained from: Hamigua <hamigua at cuc.cn> (I think)
Relinquish ports I happen to no longer use. They seem to be of the latest
versions, and non-broken, so this is a "clean" dump.
Approved by: fjoe (mentor)
This font pack is designed for screen and print and as a
"drop-in" replacement for Arial and Time New Roman, so people
can stop using not-so-free Webfonts from Microsoft.
You get the following fonts: Aerial, Aerial Mono, Tymes &
Veranda (no this is not a typo).
It will automatically make the fonts recognizable by the
system. It also makes Aerial the default font for the
Sans-Serif and Tymes the Serif font types.
The fonts are derived from the Bitstream Vera fonts and are
available under the same terms as Vera.
PR: ports/70564
Submitted by: Alexey Dokuchaev <danfe@regency.nsu.ru>
install fonts to ${PREFIX}/lib/X11/fonts/urwfonts-ttf.
- Add pkg-message with some description how to get X server to know
about installed fonts.
PR: ports/70375
Submitted by: Roman Bogorodskiy
and make XFREE86_VERSION map to it. XFREE86_VERSION is now deprecated.
- Make xorg the default X_WINDOW_SYSTEM on -current.
- Add several new X_*_PORT variables which point to various pieces of X11 based
on the setting of X_WINDOW_SYSTEM, and make ports use them.
- Add information to CHANGES about how to handle the transition.
PR: ports/68763
Approved by: portmgr (marcus)
Approved by: re (scottl)
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".
For ports-in-waiting:
USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13
USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213
USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14
Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
X font libary
Testing is encouraged, but please do not use these ports as dependencies until
they are updated to release tarballs and the XFree86 ports have been updated to
depend on them.
script was renamed to solve a conflict with archivers/rpm) to fix possible
build problems.
I've tested this with lang/icc. Any new errors because of this commit in
one of the modified ports may be because the ports previously may have used
rpm2cpio from archivers/rpm instead of the used {EXTRACT,BUILD}_DEPENDS
archivers/rpm2cpio.
up dependencies and add this incident to MOVED.
PR: (closed already) 57507, 57508, 57510, 57512, 57513, 57515
Submitted by: Samy Al Bahra <samy@kerneled.com>
Two small angular fonts, one suitable for terminals and
another for general x11 usage, created by PixelMoose.
PR: ports/54152
Submitted by: Dominic Marks <dom@cus.org.uk>