| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
sig2fv_main.cc:190:18: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
" default: "DEFAULT_WINDOW"\n\n"
^
server.cc:125:68: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned
long>' and 'int')
if (bind(fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) != 0)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~
Reported by: antoine (via bug 224669)
Notes:
svn path=/head/; revision=458271
|
|
|
|
| |
Notes:
svn path=/head/; revision=453284
|
|
|
|
|
|
|
|
|
|
|
|
| |
For example, after r450862 mips64 still failed:
gmake[1]: Entering directory '/wrkdirs/usr/ports/audio/festival/work/speech_tools'
Check system type
../config/config:197: ../config/systems/mips_unknown.mak: No such file or directory
gmake[1]: *** No rule to make target '../config/systems/mips_unknown.mak'. Stop.
Notes:
svn path=/head/; revision=450866
|
|
|
|
| |
Notes:
svn path=/head/; revision=450862
|
|
|
|
|
|
|
|
|
|
|
| |
was a stub, provide a real one.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=440746
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Upstream build scripts have some machinery to include compiler-specific
.mak file depending on compiler used. This is handled in an ugly way by the
port, roughly, upstream makefile includes ${CC}.mak and ports Makefile
copies that from default .mak. This is breaks when CC is an absolute path
and is useless anyway, as even if it was implemented properly, customized
.mak files are for compilers we'll never use such as gcc 3.2, intel and suncc.
So make upstream makefile always include the default .mak.
PR: 215253
Approved by: maintainer timeout (mi@aldan.algebra.com, 6 weeks)
MFH: 2017Q1
Notes:
svn path=/head/; revision=432825
|
|
|
|
|
|
|
| |
Pointy hat to: linimon
Notes:
svn path=/head/; revision=426212
|
|
|
|
|
|
|
|
|
| |
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Notes:
svn path=/head/; revision=426082
|
|
|
|
|
|
|
|
|
|
| |
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Notes:
svn path=/head/; revision=424411
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412344
|
|
|
|
| |
Notes:
svn path=/head/; revision=403676
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Updated HTS and CG engines
- Support for newer compilers
- Bug fixes galore.
PR: 204754
Submitted by: Michael Danilov <mike.d.ft402@gmail.com>
Approved by: mi (maintainer)
Notes:
svn path=/head/; revision=402619
|
|
|
|
| |
Notes:
svn path=/head/; revision=398832
|
|
|
|
|
|
|
|
| |
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3412?
Notes:
svn path=/head/; revision=394778
|
|
|
|
|
|
|
|
| |
PR: 200287, 201202
Submitted by: Mikael Urankar, avilla
Notes:
svn path=/head/; revision=391068
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=387021
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=386312
|
|
|
|
|
|
|
|
|
| |
Append git hash to filenames without changing current checksums.
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=385154
|
|
|
|
| |
Notes:
svn path=/head/; revision=383285
|
|
|
|
| |
Notes:
svn path=/head/; revision=371234
|
|
|
|
| |
Notes:
svn path=/head/; revision=367104
|
|
|
|
| |
Notes:
svn path=/head/; revision=363157
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
added to LIBS to make sure they appear after any -L and -l flags set by
upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.
Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.
PR: 190592
Exp-run by: antoine
Approved by: portmgr (antoine)
Notes:
svn path=/head/; revision=357486
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)
bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore
Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier
With hat: portmgr
Notes:
svn path=/head/; revision=352986
|
|
|
|
|
|
|
| |
Fix plist
Notes:
svn path=/head/; revision=350375
|
|
|
|
|
|
|
|
|
| |
LIB_DEPENDS in audio
With hat: portmgr
Notes:
svn path=/head/; revision=336166
|
|
|
|
|
|
|
| |
audio)
Notes:
svn path=/head/; revision=327706
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
remains uncompileable by modern compilers and substantial patches --
obtained from both Debian and NetBSD ports of the same software were
necessary.
Among the patches is a functionality-improving one, which allows the
new version to continue using voices created for 1.9x
Tested by: bapt
Notes:
svn path=/head/; revision=326512
|
|
|
|
|
|
|
|
|
|
|
| |
While here:
- Trim headers
- Convert some USE_GNOME=pkgconfig to USES=pkgconfig
- Add some missing pkgconf dependencies
- Convert some USE_GNOME=gnomehack to USES=pathfix
Notes:
svn path=/head/; revision=325727
|
|
|
|
| |
Notes:
svn path=/head/; revision=322717
|
|
|
|
|
|
|
|
|
| |
While here trim headers
Convert some gnomehack to pathfix
Convert some pkgconfig to USE_PKGCONFIG=build
Notes:
svn path=/head/; revision=314853
|
|
|
|
|
|
|
|
| |
Submitted by: trevor
With hat: portmgr
Notes:
svn path=/head/; revision=311049
|
|
|
|
| |
Notes:
svn path=/head/; revision=295349
|
|
|
|
|
|
|
| |
this make the behavious compatible with both pkg_install and pkgng
Notes:
svn path=/head/; revision=294789
|
|
|
|
| |
Notes:
svn path=/head/; revision=271305
|
|
|
|
|
|
|
| |
MAKE_ENV
Notes:
svn path=/head/; revision=217468
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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)
Notes:
svn path=/head/; revision=211584
|
|
|
|
|
|
|
|
|
|
|
| |
- Use DATADIR
PR: ports/114324
Submitted by: gabor
Approved by: maintainer timeout
Notes:
svn path=/head/; revision=195954
|
|
|
|
|
|
|
|
| |
Pointy hat to: mi
Approved by: portmgr (implicit)
Notes:
svn path=/head/; revision=191613
|
|
|
|
|
|
|
|
| |
Submitted by: kris
Approved by: portmgr (erwin)
Notes:
svn path=/head/; revision=191611
|
|
|
|
|
|
|
|
| |
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Notes:
svn path=/head/; revision=191544
|
|
|
|
|
|
|
| |
Notified by: kris
Notes:
svn path=/head/; revision=188658
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
gcc-4.2. Add some 64-bitness patches. Enable automatic post-build tests.
Attempt to allow ESound and NAS modules via OPTIONS:
PR: ports/102413
Both are on by default ATM...
Notes:
svn path=/head/; revision=188368
|
|
|
|
| |
Notes:
svn path=/head/; revision=161245
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lib-depend on NAS and ESD -- these are optional dependencies and are
not used by default even if present.
Once I figure out, how to turn them on, I'll add them as OPTIONS.
Use REINPLACE to improve the CC/CXX/CFLAGS/CXXFLAGS compliance.
Stop installing the audsp executable into two places. Adjust pkg-plist
to stop complaining about unempty directories populated by festlex and
festvox ports.
Bump PORTREVISION. May the festivities begin...
Notes:
svn path=/head/; revision=158936
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
PR.
Thanks for contributing.
Since the acroread7 port is a somewhat important port for our users, I
will hand it over to emulation@ if no _active_ *committer* takes it
before the ports freeze.
While I'm here:
- fix a little nit in the csound port (I think the intention was to
create no backup file instead of creating one with a "-e" extension)
- set ARCH to i386 in the amd64 case for the acroread7 port. This
is a work-around to be able to install everything when a dependency
is not already installed (ARCH is read-only in sub-makes, so the
dependencies can't change it). This should be removed when the
dependencies are fixed or converted to use bsd.linux-rpm.mk. [1]
Not objected to by: portmgr (explicit: krion; silence: rest)
Maintainer timeout: ~4 months
Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1]
PR: 87985 [1]
Notes:
svn path=/head/; revision=155784
|
|
|
|
| |
Notes:
svn path=/head/; revision=153010
|
|
|
|
| |
Notes:
svn path=/head/; revision=146601
|
|
|
|
| |
Notes:
svn path=/head/; revision=145618
|
|
|
|
| |
Notes:
svn path=/head/; revision=145615
|