non port: japanese/groff/Makefile |
SVNWeb
|
Number of commits found: 64 |
Wed, 20 Jul 2022
|
[ 14:22 Tobias C. Berner (tcberner) ] 8d9b67b (Only the first 10 of 220 ports in this commit are shown above. )
japanese: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* ABURAYER Rewsirow <pcs51674@asciinet.or.jp>
* Aaron Dalton <aaron@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Akito FUJITA <fujita@zoo.ncl.omron.co.jp>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Daichi GOTO <daichi@FreeBSD.org>
* Daisuke Kawahara <kawahara@pine.kuee.kyoto-u.ac.jp>
* David O'Brien (obrien@cs.ucdavis.edu)
* Eiji-usagi-MATSUmoto <usagi@ruby.club.or.jp>
* FUJISHIMA Satsuki <sf@FreeBSD.org>
* Fumihiko Kimura <jfkimura@yahoo.co.jp> (Only the first 15 lines of the commit message are shown above )
|
Mon, 10 Jan 2022
|
[ 15:15 Stefan Eßer (se) ] bcaf25a (Only the first 10 of 491 ports in this commit are shown above. )
Fix CONFLICTS entries of multiple ports
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.
This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.
Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port (Only the first 15 lines of the commit message are shown above )
|
Fri, 29 Oct 2021
|
[ 09:50 Stefan Eßer (se) ] 819f25b (Only the first 10 of 388 ports in this commit are shown above. )
*/*: Remove redundant '-[0-9]*' from CONFLICTS
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").
Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".
Approved by: portmgr (blanket)
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Sat, 10 Nov 2018
|
[ 18:12 bapt ] (Only the first 10 of 386 ports in this commit are shown above. )
Install texinfo files (GNU info) into ${PREFIX}/share/info
After a discussion on the mailing list on moving manpages to
${PREFIX}/share/man for consistency with base where it is
installed in usr/share/man, it appeared the same should happen
to GNU info files which were installed under share in base and
not in ports.
Now texinfo is not in base on any of the supported version of FreeBSD
it is possible to proceed to this move and it is easier to do than
the manpage change.
Other benefit than consistency are less patching: all build tools but
cmake are expecting info files to be under share/info and cmake (patched here)
was having an exception for BSD so the patch makes FreeBSD case less
specific for them
Bump revision of all impacted ports
PR: 232907
exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D17816
|
Mon, 5 Nov 2018
|
[ 07:18 meta ]
japanese/groff: unbreak the build
While here,
- Pet some portlint warnings (extra item in USES section)
PR: 232205
Submitted by: satosi.kimura@nifty.ne.jp
Sponsored by: HAW International, Inc.
|
Sun, 4 Nov 2018
|
[ 09:39 antoine ]
Mark BROKEN: fails to build
In file included from lbp.cc:31:
./charset.h:55:21: error: constant expression evaluates to 128 which cannot be
narrowed to type 'char' [-Wc++11-narrowing]
0x47,0x00,0x48,0x00,0x80,0x00,0x82,0x00,0x83,0x00,0x84,
^~~~
Reported by: pkg-fallout
|
Mon, 10 Sep 2018
|
[ 13:15 mat ] (Only the first 10 of 127 ports in this commit are shown above. )
Add EXAMPLES options to ports that should have one.
Also various fixes related to said option.
PR: 230864
Submitted by: mat
exp-runs by: antoine
|
[ 13:14 mat ] (Only the first 10 of 995 ports in this commit are shown above. )
Add DOCS options to ports that should have one.
Also various fixes related to said option.
PR: 230864
Submitted by: mat
exp-runs by: antoine
|
Thu, 8 Dec 2016
|
[ 19:23 tijl ] (Only the first 10 of 122 ports in this commit are shown above. )
Remove libiconv.so.3 compatibility link that was added in r374303 to
prevent massive PORTREVISION bumps. Bump dependent ports that have not
been bumped since.
|
Fri, 21 Oct 2016
|
[ 12:51 mat ] (Only the first 10 of 718 ports in this commit are shown above. )
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
|
Tue, 31 Mar 2015
|
[ 13:33 robak ]
japanese/groff: add CPE information
- Maintainer's timeout (hrs@FreeBSD.org)
PR: 198594
Submitted by: Shun <shun.fbsd.pr@dropcut.net>
|
Fri, 29 Aug 2014
|
[ 18:12 hrs ]
- Fix build with newer versions of makeinfo.
- Fix shebang line in sh and perl scripts.
- Remove gcc dependency.
- Move example files to EXAMPLESDIR.
|
Wed, 25 Jun 2014
|
[ 21:54 antoine ]
Allow to build with texinfo from ports
|
Wed, 11 Jun 2014
|
[ 14:50 tijl ] (Only the first 10 of 297 ports in this commit are shown above. )
Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS. Also remove references to
PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
required additional patches.
Somewhat simplified a linker command line looks like:
${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}
where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us. If possible -L and -l flags need to be (Only the first 15 lines of the commit message are shown above )
|
Mon, 26 May 2014
|
[ 12:33 miwi ] (Only the first 10 of 12 ports in this commit are shown above. )
- Convert gmake,bzip2 to USES
Approved by: portmgr
|
Fri, 7 Feb 2014
|
[ 19:06 hrs ] (Only the first 10 of 17 ports in this commit are shown above. )
- Add STAGEDIR support.
- Add LICENSE.
- Update MASTER_SITES.
- Remove old hacks for systems prior 5.1-RELEASE.
- Fix undefined reference to `polyfill' issue on 10.0 and later. [*]
- Style clean-ups.
Submitted by: TAKEHARU KATO [*]
PR: ports/185203
|
Fri, 20 Sep 2013
|
[ 18:47 bapt ] (Only the first 10 of 352 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
japanese)
|
Wed, 4 Sep 2013
|
[ 18:06 madpilot ] (Only the first 10 of 129 ports in this commit are shown above. )
- Make ports use the libc provided iconv implementation on 10-CURRENT
after r254273
- Fix a bunch of ports to properly work after this
- Mark converters/libiconv as IGNORE for systems with iconv in libc
Reviewed by: bapt
Approved by: portmgr (bapt)
Discussed with: bapt, bsam (who both contributed ideas and code)
|
Sat, 27 Apr 2013
|
[ 11:59 mva ] (Only the first 10 of 219 ports in this commit are shown above. )
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here
Reviewed by: zeising
|
Tue, 9 Oct 2012
|
[ 22:12 linimon ] (Only the first 10 of 95 ports in this commit are shown above. )
Force numerous ports that fail to build with clang over to instead always
rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to
accomplish this.
The ports chosen were ports that blocked 2 or more ports from building with
clang. (There are several hundred other ports that still fail to build with
clang, even with this patch. This is merely one step along the way.)
Those interested in fixing these ports with clang, and have clang as their
default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes.
For those who have gcc as their default compiler, this change is believed
to cause no change.
Hat: portmgr
Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various
combinations of patch/no-patch and flag settings.
|
Fri, 1 Jun 2012
|
[ 05:26 dinoex ] (Only the first 10 of 4371 ports in this commit are shown above. )
- update png to 1.5.10
|
Sun, 16 Jan 2011
|
[ 18:09 uqs ]
Add CONFLICTS for groff ports
Submitted by: Andrzej Tobola <ato@iem.pw.edu.pl>
Feature safe: yes
|
Sun, 28 Mar 2010
|
[ 06:47 dinoex ] (Only the first 10 of 4470 ports in this commit are shown above. )
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi
|
Fri, 5 Feb 2010
|
[ 11:46 dinoex ] (Only the first 10 of 4271 ports in this commit are shown above. )
- update to jpeg-8
|
Wed, 18 Nov 2009
|
[ 22:39 pav ] (Only the first 10 of 37 ports in this commit are shown above. )
- Mark MAKE_JOBS_UNSAFE
Reported by: pointyhat
|
Mon, 4 May 2009
|
[ 20:14 hrs ]
Take maintainership.
|
Mon, 5 Jan 2009
|
[ 20:36 pav ] (Only the first 10 of 102 ports in this commit are shown above. )
- Remove conditional checks for FreeBSD 5.x and older
|
Wed, 3 Dec 2008
|
[ 22:51 pav ]
- Update debian patch to 21
PR: ports/124649 (based on)
Submitted by: Pedro F. Giffuni <pfgshield-freebsd@yahoo.com>
|
Tue, 9 Sep 2008
|
[ 22:05 gahr ]
- Fix build upon NOPORTDOCS
Reported by: QA Tindie
Approved by: portmgr
|
Sat, 19 Apr 2008
|
[ 17:56 miwi ] (Only the first 10 of 2842 ports in this commit are shown above. )
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
|
Wed, 18 Apr 2007
|
[ 11:46 gabor ] (Only the first 10 of 40 ports in this commit are shown above. )
- Remove FreeBSD 4.X support from unmaintained ports in categories starting
with letter i-m
|
Sun, 21 May 2006
|
[ 23:10 okazaki ]
Use SUB_FILES to install mdoc.local.
Support newer FreeBSD releases in the Fx macro. (*1)
Submitted by: Watanabe Kazuhiro <CQG00620 at nifty.ne.jp> (*1)
|
Sat, 22 Apr 2006
|
[ 21:08 okazaki ]
Upgrade I18N patch to 1.8.1.1-12.
Remove deprecated USE_REINPLACE.
Utilize INFO.
Fix a patch error about a html device.
PR: ports/95025
Submitted by: Atsushi SUGAWARA <peanutsjamjam@w9.dion.ne.jp>
|
Sat, 15 Apr 2006
|
[ 06:17 linimon ] (Only the first 10 of 11 ports in this commit are shown above. )
Reset okazaki due to long period of inactivity and maintainer-timeout.
Hat: portmgr
|
Mon, 9 May 2005
|
[ 07:06 okazaki ]
Security update to ja-groff.
- Fix insecure temporary file handling of pic2graph, eqn2graph [1] and groffer
[2].
Utilize PORTDOCS.
PR: ports/80671
Submitted by: KOMATSU Shinichiro
VuXML: 01bb84e2-bd88-11d9-a281-02e018374e71 [1],
169f422f-bd88-11d9-a281-02e018374e71 [2]
|
Fri, 14 May 2004
|
[ 00:33 okazaki ]
Rearrange dependencies.
Turn off RUN_DEPENDS to `graphics/netpbm' when PACKAGE_BUILDING is defined.
|
Thu, 11 Mar 2004
|
[ 05:31 okazaki ]
Update I18N patch.
|
Mon, 16 Feb 2004
|
[ 12:37 okazaki ]
Fix the bug of a make rule in the install-links target that installs
invalid symbolic links into ${PREFIX}/bin.
Bump up PORTREVISION.
Submitted by: taku-san and otsune-san
|
Wed, 11 Feb 2004
|
[ 10:16 okazaki ]
Utilize USE_ICONV.
Fix PLIST_SUB when WITHOUT_INFO is defined and OSVERSION >= 470000.
Rename for-loop iterators FILE to F, to avoid overriding FILE variable provided
by bsd.port.mk.
Stop using sub make in post-install rules.
|
Wed, 4 Feb 2004
|
[ 05:21 marcus ] (Only the first 10 of 1588 ports in this commit are shown above. )
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
|
Fri, 17 Oct 2003
|
[ 09:46 okazaki ]
Use ${MASTER_SITE_DEBIAN} instead of ${MASTER_SITE_GNU} for fetching
the source archive of groff-1.18.1 until it will be uploaded at
ftp.gnu.org again.
PR: 57490
Support .In macro in the text.
Submitted by: horikawa
|
Fri, 3 Oct 2003
|
[ 11:56 okazaki ]
Avoid a bus error in the do-build target when nl_langinfo(CODESET) returns
"EUC".
PR: ports/57490
|
Wed, 10 Sep 2003
|
[ 12:31 okazaki ]
Update I18N patch.
Obtained from: debian
Update `operating-system' to FreeBSD 4.9.
Use %%DOCSDIR%% in pkg-plist.
|
Wed, 30 Jul 2003
|
[ 12:33 okazaki ]
Use ${XARGS}.
|
Fri, 23 May 2003
|
[ 00:21 okazaki ]
Update tmac suite.
* doc.tmac (tag-list): Apply a vendor fix based on the diff
1.1.1.9 -> 1.1.1.10 of src/contrib/groff/tmac/doc.tmac.
Submitted by: horikawa
* mdoc/ja.eucJP: Add translations of volume-ds-XXX and str-Lb-libYYY.
Submitted by: Akira Ikeuchi <a_ikeuchi@mic.mitsumi.co.jp>
* mdoc/doc-common (operating-system-FreeBSD-5.1): New string variable.
* mdoc/ja.eucJP (volume-operating-system-ateol): Switch to 0 instead of 1.
Increment PORTREVISION.
|
Tue, 25 Mar 2003
|
[ 04:19 okazaki ]
Grouping MASTER_SITES and DIST_FILES. [1]
Suppress warning "locale: not found" by nroff as /usr/bin/nroff does. [1]
Support ja_JP.EUC in nroff for backward compatibility.
PORTREVISION up.
Submitted by: kuriyama [1]
|
Thu, 6 Mar 2003
|
[ 07:50 kris ]
".ifdef ${WITHOUT_WCHAR_H}" is not valid make syntax
Pointy hat to: okazaki
|
[ 04:59 okazaki ]
Upgrade to 1.18.1.
Update tmac suite to 20030303 of RELENG_4.
|
Thu, 19 Sep 2002
|
[ 01:38 okazaki ]
Update tmac suite to 20020918 of RELENG_4.
Change the default .Os value to FreeBSD 4.7.
Bump PORTREVISION.
|
Thu, 20 Jun 2002
|
[ 19:13 okazaki ]
Use ${REINPLACE_CMD} instead of ${PERL}.
|
Mon, 3 Jun 2002
|
[ 02:47 okazaki ]
Update tmac suite to 20020602 of RELENG_4.
Change the default .Os value to FreeBSD 4.6.
Bump PORTREVISION.
|
Tue, 22 Jan 2002
|
[ 18:53 okazaki ]
Update the value of `operating-system' defined at mdoc.local to "FreeBSD\~4.5".
Bump PORTREVISION.
|
[ 06:21 okazaki ]
Update tmac suite to sync with RELENG_4 at 20020120. Bump PORTREVISION. Use
${DOCSDIR} while I'm here.
|
Tue, 4 Sep 2001
|
[ 08:16 okazaki ]
Sync with /usr/bin/groff of RELENG_4. - Add support of .AT, .UC, and .Ex. -
Allow multiple arguments for .Rv.
|
Tue, 14 Aug 2001
|
[ 02:26 okazaki ]
Upgrade to 1.17.2.
|
Mon, 6 Aug 2001
|
[ 02:14 okazaki ]
Optimize CONFIGURE_ENV. Fix plist. Bump up PORTREVISION.
|
Sat, 4 Aug 2001
|
[ 03:15 horikawa ]
Japanese version of groff-1.17.
|
Tue, 12 Jun 2001
|
[ 08:45 okazaki ]
Reduce a list of master-site candidates.
|
Thu, 29 Mar 2001
|
[ 23:42 okazaki ]
Update tmac suite to sync with RELENG_4 at 20010314. Bump PORTREVISION.
|
Wed, 14 Feb 2001
|
[ 11:17 okazaki ]
1) Install up-to-date tmac suite from recent 4-STABLE live-tree instead of
copying unknown stock versions from /usr/share/tmac.
|
Mon, 18 Dec 2000
|
[ 06:34 okazaki ]
Fix last change. Use ${PERL} to modify troffrc and eqnrc instead of ${PATCH}
with a static diff `files/rc.diff'. Remove entries of garbage files from
`pkg-plist'.
|
[ 05:45 okazaki ]
Fix an error on recent 4-STABLE and -CURRENT at `post-install'.
|
Mon, 11 Dec 2000
|
[ 20:40 okazaki ]
USE ${MASTER_SITE_LOCAL} for PATCH_SITES, since the previous patch site was
disappeared from the Net. Change maintainer's mail address.
|
Number of commits found: 64 |