| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
PR: 190848
Submitted by: andrew@freebsd.org
Reviewed by: mat@freebsd.org
Notes:
svn path=/head/; revision=360837
|
|
|
|
|
|
|
| |
With hat: portmgr
Notes:
svn path=/head/; revision=359209
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la. So everything that subsequently links with libA will also
link to these extra libraries. This causes too much overlinking.
This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging. However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.
So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).
PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries. Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field. In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.
PR: ports/188759
Exp-run: bdrewery
Approved by: portmgr (bdrewery)
Notes:
svn path=/head/; revision=351936
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Enable asm on FreeBSD/i386 >= 10.0.
- Enable asm on FreeBSD/amd64. [1]
- Use MAKE_CMD instead of MAKE to run regression tests.
PR: ports/187441
Submitted by: Stoyan Dimov <pr.freebsd.org@registrations.systeem.com> [1]
Approved by: maintainer timeout (2 weeks)
Notes:
svn path=/head/; revision=349852
|
|
|
|
|
|
|
|
|
| |
And USE_GMAKE by USES=gmake where touching a port because of the above.
Approved by: portmgr (bapt) [1]
Notes:
svn path=/head/; revision=346721
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Remove BROKEN on powerpc [1]
- Enable STAGE support
PR: ports/183066
Submitted by: jhibbits
Approved by: maintainer timeout (1 month)
Notes:
svn path=/head/; revision=336421
|
|
|
|
|
|
|
| |
security)
Notes:
svn path=/head/; revision=327769
|
|
|
|
|
|
|
|
| |
Reviewed by: umq
Approved by: umq
Notes:
svn path=/head/; revision=325029
|
|
|
|
|
|
|
|
|
|
|
| |
and libgcrypt vulnerability
PR: 181231
Submitted by: Hirohisa Yamaguchi (maintainer) [1]
Security: http://www.vuxml.org/freebsd/689c2bf7-0701-11e3-9a25-002590860428.html
Notes:
svn path=/head/; revision=324830
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
http://lists.gnupg.org/pipermail/gnupg-announce/2013q1/000324.html (1.5.1)
http://lists.gnupg.org/pipermail/gnupg-announce/2013q2/000325.html (1.5.2)
PR: 177100
Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
Notes:
svn path=/head/; revision=317219
|
|
|
|
|
|
|
|
|
| |
kde, and other builds on 8 and 9.
Hat: portmgr
Notes:
svn path=/head/; revision=303822
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
ports
- Avoid installing multiple copies of the GPLv2 and LGPL21 licenses
- Bump PORTREVISION
PR: 170488
Submitted by: Jason E. Hale <bsdkaffee@gmail.com>
Approved by: Hirohisa Yamaguchi (maintainer)
Notes:
svn path=/head/; revision=303123
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Remove check for obsolete, unsupported OS version
- pet portlint (space/vs tab, like 41, 44 of Makefile)
PR: ports/166388
Submitted by: scheidell@ (me)
Reported by: glevand <geoffrey.levand@mail.ru>
Approved by: maintainer (timeout, 21 days)
Notes:
svn path=/head/; revision=301475
|
|
|
|
| |
Notes:
svn path=/head/; revision=285106
|
|
|
|
|
|
|
|
|
| |
PR: ports/159873
Submitted by: Michael Scheidell <scheidell@secnap.net>
Approved by: maintainer, miwi, wen (mentors implicit)
Notes:
svn path=/head/; revision=281921
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
had erroneously assumed this would only be compiled on amd64, but even
then a 64 bit compare is wrong. The variables referenced in the inline
assembly are all plain int, so 32 bit.
PR: ports/159147
Pointy hat to: dim
Requested by: Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
Notes:
svn path=/head/; revision=278348
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to the following:
rijndael.c:846:46: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq')
"movdqa 0xa0(%%esi), %%xmm1\n\t"
^
<inline asm>:24:2: note: instantiated into assembly here
cmp $10, -80(%ebp)
^
This is because the 'cmp' instruction lacks a type suffix, and is thus
ambiguous. Fix this by changing these to 'cmpq'.
PR: ports/158994
Approved by: Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
Notes:
svn path=/head/; revision=278132
|
|
|
|
|
|
|
|
| |
PR: ports/158574
Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
Notes:
svn path=/head/; revision=276970
|
|
|
|
| |
Notes:
svn path=/head/; revision=265663
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
done in 9-current so clang can build it on i386.
Update LICENSE block, and remove md5 sum.
PR: ports/151349
Submitted by: myself
Approved by: Yamaguchi Hirohisa <umq@ueo.co.jp> (maintainer)
Notes:
svn path=/head/; revision=263933
|
|
|
|
|
|
|
|
| |
PR: ports/148755
Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> (maintainer)
Notes:
svn path=/head/; revision=258313
|
|
|
|
|
|
|
|
|
|
|
|
| |
it, but it doesn't really hurt, either.)
PR: 147295
Submitted by: Grzegorz Blach <magik@roorback.net>
Approved by: maintainer timeout (>3 weeks)
Feature safe: yes
Notes:
svn path=/head/; revision=257062
|
|
|
|
|
|
|
|
|
|
| |
PR: ports/144312
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet at sunpoet.net>
Reviewed by: Hirohisa Yamaguchi (maintainer)
Approved by: itetcu (mentor)
Notes:
svn path=/head/; revision=251007
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.
It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.
With help: marcus and kwm
Pointyhat-exp: a few times by pav
Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and
a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by: marcus
Approved by: portmgr
Notes:
svn path=/head/; revision=238781
|
|
|
|
|
|
|
|
| |
PR: 130914
Submitted by: Hirohisa Yamaguchi <umq at ueo dot co dot jp> (maintainer)
Notes:
svn path=/head/; revision=226722
|
|
|
|
|
|
|
|
|
|
|
| |
- Pass maintainership to submitter per PR 127224
PR: ports/127478
Submitted by: Hirohisa Yamaguchi <umq at ueo.co.jp>
Approved by: arved (maintainer)
Notes:
svn path=/head/; revision=225325
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.
To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.
To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.
Changes to Mk/*:
- Add runtime detection magic in bsd.port.mk
- Remove CONFIGURE_TARGET hack in various bsd.*.mk
- USE_GNOME=gnometarget is now an no-op
Changes to individual ports, other than removing the CONFIGURE_TARGET hack:
= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
- comms/gnuradio
- science/abinit
- science/elmer-fem
- science/elmer-matc
- science/elmer-meshgen2d
- science/elmerfront
- science/elmerpost
= use x86_64 as ARCH
- devel/g-wrap
= other changes
- print/magicfilter
GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf
Total # of ports modified: 1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)
PR: 126524 (obsoletes 52917)
Submitted by: rafan
Tested on: two pointyhat 7-amd64 exp runs (by pav)
Approved by: portmgr (pav)
Notes:
svn path=/head/; revision=218938
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).
PR: ports/124340
Submitted by: edwin@
Approved by: portmgr (pav)
Notes:
svn path=/head/; revision=214430
|
|
|
|
|
|
|
|
| |
PR: 123099
Submitted by: Hirohisa Yamaguchi
Notes:
svn path=/head/; revision=212555
|
|
|
|
|
|
|
|
| |
PR: 121207
Submitted by: ale, Mark Andrews
Notes:
svn path=/head/; revision=208172
|
|
|
|
|
|
|
|
| |
PR: 118541
Submitted by: Hirohisa Yamaguchi
Notes:
svn path=/head/; revision=208143
|
|
|
|
|
|
|
|
|
|
|
|
| |
1. remove quotes from COMMENT
2. INSTALLS_SHLIB -> USE_LDCONFIG
PR: ports/115286
Submitted by: David Yeske <dyeske@gmail.com>
Approved by: maintainer timeout
Notes:
svn path=/head/; revision=200013
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
supports them. This is determined by running ``configure --help'' in
do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
subdirectory detection.
PR: ports/111470
Approved by: portmgr
Discussed with: stas (Mk/*), gerald (info related stuffs)
Tested by: pointyhat exp run
Notes:
svn path=/head/; revision=196111
|
|
|
|
| |
Notes:
svn path=/head/; revision=186897
|
|
|
|
| |
Notes:
svn path=/head/; revision=183951
|
|
|
|
| |
Notes:
svn path=/head/; revision=183519
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add explicit version to libgpg-error dependency where missing [2]
- Bump PORTREVISION [1]
Approved by: maintainers (arved, lofi, novel,
ports at mcdermottroe dot com) [1]
Suggested by: novel, lofi [2]
Notes:
svn path=/head/; revision=173573
|
|
|
|
| |
Notes:
svn path=/head/; revision=171762
|
|
|
|
| |
Notes:
svn path=/head/; revision=162215
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
Notes:
svn path=/head/; revision=161270
|
|
|
|
|
|
|
| |
Approved by: portmgr (kris)
Notes:
svn path=/head/; revision=156749
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
Notes:
svn path=/head/; revision=148323
|
|
|
|
| |
Notes:
svn path=/head/; revision=147566
|
|
|
|
|
|
|
|
|
|
|
| |
Noteworthy changes are:
* Made the RNG immune against fork without exec.
* Minor changes to some function declarations. Buffer arguments are
now typed as void pointer. This should not affect any compilation.
* A bug in the definition of gcry_cipher_register has been fixed.
Notes:
svn path=/head/; revision=145780
|
|
|
|
| |
Notes:
svn path=/head/; revision=136272
|
|
|
|
|
|
|
| |
Reported by: pointyhat
Notes:
svn path=/head/; revision=133917
|
|
|
|
|
|
|
|
| |
PR: 80046
Submitted by: leeym
Notes:
svn path=/head/; revision=133766
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* made the code try to lock secure memory pool not only when running as
root,
* fixed type usage in Serpent,
* made the code mix the PID into the entropy pool for better protection
after a fork,
* fixed memory leak in RSA.
* fixed alignment problems in Rijndael,
* fixed memory leak in gcry_pk_sign(),
* fixed broken pointer access in gcry_ac_open(),
* updated the documentation,
* fixed several other bugs.
Chase Shared library version and bump PORTREVISION of affected ports.
Notes:
svn path=/head/; revision=126139
|
|
|
|
| |
Notes:
svn path=/head/; revision=119165
|
|
|
|
|
|
|
|
| |
Submitted by: lofi, eik
Approved by: portmgr (eik)
Notes:
svn path=/head/; revision=118107
|