- 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.