Age | Commit message (Collapse) | Author | Files | Lines |
|
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.
|
|
instead of using the general Xaw framework.
tron@ says ok.
|
|
|
|
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.
|
|
|
|
|
|
|
|
compatibility provided via PKG_OPTIONS_LEGACY_OPTS.
|
|
|
|
font rendering and the PDF writer)
|
|
of ghostscript-fonts).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
USE_GNU_TOOLS -> USE_TOOLS
awk -> gawk
m4 -> gm4
make -> gmake
sed -> gsed
yacc -> bison
|
|
Ok'd by jmmv@ and rh@ (gnome 1 maintainers).
|
|
|
|
|
|
pick up up by accident (and fail to build)
|
|
General:
* new and updated translations: bn_IN, ca, cs, el, el_GR, eo, eu, fi, hu, ja,
ko, mr, pl, ro, vi,
* new french documentation.
gtk-xfce-engine:
* fix various colors issues with ExoIconBar, prelight colors for treeview,
AdobeĀ® Acrobattm 7, progress bar, combo box, gtk scales (#848).
libxfcegui4:
* check ~/.local/share/pixmaps/ as a fallback (#731).
xfcalendar:
* fix compiling with --enable-debug=full (#843),
* remove C99 variable declaration and C++ comments.
xfce4-mixer:
* fix a bug with ALSA.
xfce4-session:
* fix a crash with the MCS plugin.
xfce-utils:
* taskbar: Add a command option "--monitor=x" to allow specifying which
monitor to use in Xinerama mode.
xfdesktop:
* fix translation problems with menu panel plugin,
* fix bug where binding 'xfdesktop -menu' only works sporadically (#441),
* fix unresolved symbol problem with menu module.
xffm:
* fix property dialog crahsing on FreeBSD (#945),
* fix library version info not set on the properties module (#882, #249),
* fix fstab parsing (#524),
* fix compilation issues with ansi compiler and gcc4 (#862).
xfprint:
* make bsdlpr plugin compile,
* change CUPS detection code,
* set correct ld flags (#871),
* add support for printcap aliases (#821),
* fix MCS plugin.
xfwm4:
* fix mouse buttons being left ungrabbed when focus was transfered to
an unmanaged window,
* document hidden option "workspace_scroll" (#948),
* various focus issues (#759, #869, #899, #905, #924, #931),
* fix pixmap depth not being properly set (#895),
* refresh frame when "skip taskbar" state changes (#898),
* allow seemless windows to be hidden from kbd shortcuts,
* code cleanup.
|
|
out the whole command line necessary to extract a .tar.gz file.
|
|
LaTeX can be used to typeset many kinds of different documents, but
typesetting chemical reactions is esthetically not very pleasing because
LaTeX's own arrows \rightarrow, \leftarrow and \rightleftharpoons which
you might use for this purpose are too short and the arrow heads are not
like the "standard" ones you will find in books or journals on chemistry.
The macro chemarrow.sty in conjunction with the font arrow.mf is supposed
to make the typesetting of chemical reaction schemes in LaTeX easier and
especially nicer looking.
|
|
|
|
makes the last change actually work.
|
|
in the rest of the Makefile. Fixes PR 30240.
|
|
which can take multiple values -- "pax" or "gtar". The default value
of EXTRACT_USING is "pax", which more closely matches reality since
before, we were using bootstrap "tar" for ${GTAR} and it was actually
pax-as-tar. Also, stop pretending pax-as-tar from the bootstrap kit
or on NetBSD is GNU tar. Lastly, in bsd.pkg.extract.mk, note whether
we need "pax" or "gtar" depending on what we need to extract the
distfiles.
|
|
|
|
required by default any longer in bsd.pkg.mk under the new tools
framework.
|
|
|
|
USE_X11=yes. I am not bumping PKGREVISION because this really
doesn't effect package too much since one of the dependencies
does require X anyways.
|
|
PR pkg/29883.
|
|
And always is defined as share/examples/rc.d
which was the default before.
This rc.d scripts are not automatically added to PLISTs now also.
So add to each corresponding PLIST as required.
This was discussed on tech-pkg in late January and late April.
Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere
and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
|
|
time, so ignore the return code.
|
|
ChangeLog has:
2005-01-22 Jim Evins <evins@snaught.com>
* NEWS:
Final prep for 2.0.2 release.
2005-01-22 Jim Evins <evins@snaught.com>
* glabels.spec.in:
Added '--remove-original' flag to desktop-file-install, so that
there is
only one menu entry.
2005-01-20 Jim Evins <evins@snaught.com>
* data/glade/object-editor.glade:
- Font family entry should not be editable.
- img_key_entry should have sensitivity=YES, so that it follows
the
sensitivity of img_key_combo.
- Barcode key entry should not be editable.
2005-01-17 Jim Evins <evins@snaught.com>
* src/view.c: (screen_changed_cb):
Don't do anything, if we don't have a screen.
2005-01-06 Jim Evins <evins@snaught.com>
* src/view.c: (get_home_scale):
Fixed bad call to gtk_widget_has_screen() -- huh?
2005-01-04 Jim Evins <evins@snaught.com>
* AUTHORS:
* data/templates/avery-iso-templates.xml:
* data/templates/misc-iso-templates.xml:
* data/templates/misc-us-templates.xml:
Added templates, submitted by Larry Harriman, Juan Carlos Valero
, and
Nick Hill.
2004-11-26 Jim Evins <evins@snaught.com>
* AUTHORS:
* po/fr.po:
Updated french translations provided by Florent Morel <florent@t
aket.org>.
* src/view-barcode.c:
* src/view-box.c:
* src/view-ellipse.c:
* src/view-image.c:
* src/view-line.c:
* src/view-text.c:
Added '#include <config.h>' -- HAVE_*GETTEXT macros were not def
ined and
thus _() strings were not being translated.
2004-11-14 Jim Evins <evins@snaught.com>
* src/debug.h:
* src/debug.c: (gl_debug_init), (gl_debug):
Borrowed from gedit: use environmental variables to select debu
g
sections.
* src/splash.c:
Removed unused include of debug.h.
* src/glabels.c: (main):
Added call to gl_debug_init(), and removed debug clutter from co
mmand line
options.
* src/glabels-batch.c: (main):
Added call to gl_debug_init().
2004-11-13 Jim Evins <evins@snaught.com>
Drawing and property toolbars were being initialized with the "icons and
text"
look in Fedora Core 3. Even though none of the buttons had any text att
ached to
them, the buttons were being sized as if they were. This led to less re
al estate
for the property editor, leading to Bug #1064630. The
* data/ui/glabels-ui.xml:
Added explicit "look" property to both drawing and property tool
bars.
* src/prefs-model.c: (gl_prefs_model_save_settings),
(gl_prefs_model_load_settings):
* src/prefs-model.h:
Removed drawing_toolbar_button_style configuration parameter.
* src/ui.c: (view_menu_item_toggled_cb),
(set_app_drawing_toolbar_style):
Do not attempt to adjust look property of the drawing toolbar.
2004-10-28 Jim Evins <evins@snaught.com>
* data/pixmaps/glabels-about-logo.png:
Updated about logo.
2004-10-28 Jim Evins <evins@snaught.com>
* data/man/glabels.1:
* src/glabels-batch.c: (main):
* src/print.h:
* src/print.c: (gl_print_batch):
Added option to glabels-batch to select the first label to begin
printing on.
2004-09-26 Jim Evins <evins@snaught.com>
* data/desktop/glabels.desktop.in:
Point to app icon, "glabels.png"
* data/mime/glabels.keys.in:
Point at mime icon, "glabels-application-x-glabels.png"
* data/pixmaps/Makefile.am:
Added glabels_app_icondir. Renamed icons.
* data/pixmaps/glabels.png:
New cleaned up app icon. Deleted glabels-icon.png.
* data/pixmaps/glabels-application-x-glabels.png:
New mime icon.
* data/pixmaps/glabels-splash.png:
Renamed glabels-logo to glabels-splash to be more correct about
role.
* src/glabels.c:
* src/template-designer.c:
Point at app icon, "glabels.png"
* src/splash.c:
Point at renamed splash image, "glabels-splash.png"
2004-08-22 Jim Evins <evins@snaught.com>
* AUTHORS:
* src/glabels-batch.c: (main):
Applied patch with minor mods to allow selecting merge source and
crop-marks on glabels-batch's command line. Original patch prov
ided by
Jos<E9> Dapena Paz <jdapena@igalia.com>.
2004-08-15 Jim Evins <evins@snaught.com>
* configure.in:
Updated version to 2.0.2.
* data/desktop/glabels.desktop.in:
- Added encoding line
- Removed period from comment
- Fixed Terminal line, changed "0" to "false"
- Added semicolen to Categories line
* po/ja.po:
- Made sure desktop.in comment string above still translated pro
perly
|
|
until the make targets are invoked. This avoids needing ${ECHO} and ${TR}
in the top-level make.
|
|
which also provides bin/foomatic-gswrapper.
Maybe this old package should be removed?
|
|
|
|
Bruce J.A. Nourish. Thank you, Bruce.
The foomatic-filters package provides foomatic-rip and foomatic-gswrapper.
foomatic-rip uses an external renderer (like GhostScript) to
translate PostScript to printer's native language. The printer
capabilities are described in PPD files. foomatic-rip works with
every known spooler.
foomatic-gswrapper massages arguments to make Ghostscript execute
properly as a filter.
|
|
|
|
no documented changes to 2.10.2
|
|
|
|
|
|
|
|
Adobe Reader is part of the Adobe Acrobat family of software, which lets
you view, distribute, and print documents in Portable Document Format
(PDF)--regardless of the computer, operating system, fonts, or application
used to create the original file. PDF files retain all the formatting,
fonts, and graphics of the original document, and virtually any
PostScript(TM) document can be converted into a PDF file.
|
|
|
|
|
|
|