notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: net-im/skype4/Makefile

Number of commits found: 24

Friday, 19 Apr 2019
08:29 tobik search for other commits by this committer
Deprecate net-im/skype4

It is End of Life since 2017 [1].  Also deprecate linux-skype_oss_wrapper
which is only useful for skype4.

[1]
https://answers.microsoft.com/en-us/skype/forum/skype_linux-skype_startms-skype_installms/end-of-life-of-skype-for-linux-43/70fe7036-ddf3-4fa3-9c06-1bca3ec0226c
Original commitRevision:499331 
Monday, 10 Sep 2018
13:14 mat search for other commits by this committer
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
Original commitRevision:479406 
Saturday, 24 Feb 2018
08:52 tcberner search for other commits by this committer
Give xmj@'s ports back to the pool

PR:		226157
Submitted by:	xmj
Original commitRevision:462775 
Tuesday, 31 Jan 2017
16:54 tijl search for other commits by this committer
- Autodetect the installed linux_base port and use LINUX_DEFAULT only as
  a last resort.
- Construct a list of DISTFILES for every architecture (amd64, i386).
  Select one list for regular make and all lists for make makesum so linux
  ports can have one combined distinfo file.
- Set DIST_SUBDIR?=centos so there's only one copy of common distfiles.
- Use MASTER_SITES and DISTFILES groups so make fetch is a bit smarter.
- Regenerate all distinfo files.
- For linux_base-c6 (just like linux_base-c7 already does) turn bin, lib,
  lib64 and sbin into symbolic links to the same directory under usr.
  This fixes the problem where some programs/libraries exist under / on
  FreeBSD and /usr on Linux or vice versa and then depending on the order
  of search paths Linux programs may run/load FreeBSD programs/libraries
  and fail.
- Turn usr/share/icons into a symbolic link to LOCALBASE/share/icons so
  Linux programs can find desktop theme icons.  This eliminates the need
  for x11-themes/linux*-hicolor-icon-theme.
- Rename pkg-plist.x86_64 to pkg-plist.amd64.
- Regenerate all pkg-plist files.
- Add @preexec to linux_base pkg-plist that moves existing files in bin,
  lib, lib64, sbin and icons to the new destination before the directories
  are turned into symbolic links.
- Remove several empty directories from linux_base ports.
- Sweep over all linux ports: use consistent style, remove old CONFLICTS,
  remove unused pkg-descr files, add NLS option,...
- Remove old linux arts, esound and openssl-compat ports.
Original commitRevision:432937 
Wednesday, 11 Jan 2017
10:08 amdmi3 search for other commits by this committer
- Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL

Approved by:	portmgr blanket
Original commitRevision:431169 
Monday, 14 Nov 2016
11:26 danfe search for other commits by this committer
Do not terminate BROKEN messages with period, it is added by the framework.
Original commitRevision:426104 
Thursday, 3 Nov 2016
21:47 tijl search for other commits by this committer
Remove NVIDIA option from Linux ports now that the nvidia-driver can be
installed later.
Original commitRevision:425274 
Wednesday, 19 Oct 2016
14:50 tijl search for other commits by this committer
Add Linux CentOS 7 infrastructure ports.

Mk/Uses/linux.mk changes:
- Add support for architecture neutral (noarch) distfiles.
- Add support for 64-bit only ports: set IGNORE on i386 and don't install
  32-bit compat libraries on amd64.

Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
Differential Revision:	https://reviews.freebsd.org/D7886
Original commitRevision:424259 
Wednesday, 7 Sep 2016
12:43 tijl search for other commits by this committer
- In Uses/linux.mk use the loop variable directly when appending to
  *_DEPENDS.  Helper variables derived from the loop variable aren't
  expanded causing *_DEPENDS to be incorrect.
- Bump all ports with more than one value in USE_LINUX.

PR:		211645
Reported by:	jkim
Original commitRevision:421496 
Monday, 5 Sep 2016
19:23 tijl search for other commits by this committer
- Replace Mk/bsd.linux-apps.mk and Mk/bsd.linux-rpm.mk with
  Mk/Uses/linux.mk.
- Replace USE_LINUX=yes with USES+=linux and USE_LINUX=(.*) with
  USES+=linux:\1 in all ports.
- Replace USE_LINUX_APPS with USE_LINUX in all ports.
- Use INSTALL_SCRIPT instead of INSTALL_PROGRAM to install scripts in some
  ports.
- When USE_LINUX_RPM is defined, simplify the way DISTFILES and EXTRACT_ONLY
  are defined.
- Remove BRANDELF_DIRS and BRANDELF_FILES handling.  In the very rare cases
  that it is still necessary ports can run ${BRANDELF} from post-patch.
- Remove AUTOMATIC_PLIST handling.  Only one port used it.
- Fix Linux MASTER_SITES.
- Replace OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS with
  default versions framework.
- bsd.port.mk:
  - Move Linux related bits to Uses/linux.mk, except USE_LINUX_PREFIX.
  - Put USE_LINUX_PREFIX handling after USES processing.
  - Define DOCSDIR, DATADIR, etc. after handling USE_LINUX_PREFIX so it can
    give these variables a different default value.
  - When a package needs to run Linux ldconfig check before installation if
    Linux support is enabled.
- emulators/linux_base-*:
  - Use USES=linux and remove duplication.
  - Remove files/lp.  FreeBSD or CUPS lp(1) should work.
  - Remove files/yp.conf.  No longer seems to be used.
  - Remove pkg-deinstall and move pkg-install into pkg-plist.
  - Update pkg-descr and pkg-message.
  - Fix handling of ldconfig cache in pkg-plist.
- devel/fb-adb: Use a Linux shell to run a Linux script but patch the script
  to use FreeBSD mkdir so mkdir -p $path creates $path and not
  /compat/linux/$path.

PR:		211645
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:421387 
Wednesday, 15 Jun 2016
09:04 tz search for other commits by this committer
Change MAINTAINER from xmj@FreeBSD.org to johannes@perceivon.net

PR:           210265
Submitted by: Johannes Jost Meixner (johannes@perceivon.net)
Approved by:  pi (mentor)
Original commitRevision:416918 
Wednesday, 25 May 2016
16:54 pi search for other commits by this committer
Several ports: Change MAINTAINER from xmj@chaot.net to xmj@FreeBSD.org

PR:		209746
Submitted by:	xmj
Original commitRevision:415848 
Friday, 1 Apr 2016
14:16 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412348 
Thursday, 25 Feb 2016
02:25 kevlo search for other commits by this committer
Add openssl and pulseaudio-libs to USE_LINUX_APPS to unbreak after the
linux-c6- to CentOS 6.7 update in r407537.
Original commitRevision:409490 
Saturday, 30 Jan 2016
18:30 miwi search for other commits by this committer
Welcome Centos 6.7

- Upgrade all linux-c6- to CentOS 6.7
- Cleanups

PR:                     205846
Submitted by:           xmj
In Collaboration with:  allanjude, netchild, xmj
Exp-run:                antoine
Sponsored by:           Perceivon Hosting Inc.
Differential Revision:  D3428

We'd like to thanks for all the feedback and comments.
Original commitRevision:407537 
Saturday, 16 Jan 2016
15:30 kevlo search for other commits by this committer
Unbreak on 11.0-CURRENT:
- Add a dependency on linux-c6-pulseaudio-libs-glib2

Sponsored by:	PortsCamp Taiwan

Reviewed by:	xmj
Original commitRevision:406231 
Wednesday, 16 Sep 2015
10:26 jbeich search for other commits by this committer
multimedia/webcamd: clarify version requirements in consumers

webcamd exposes V4L/DVB/EVDEV/etc devices with consumer ABI configured
by v4l_compat version during build. Drop >0 dummy as V4L is available
since day 1 and we only want the daemon. This syncs RUN_DEPENDS with:

  multimedia/gstreamer-plugins-v4l2
  multimedia/gstreamer1-plugins-v4l2
Original commitRevision:397046 
Wednesday, 1 Jul 2015
05:01 xmj search for other commits by this committer
Replace my FreeBSD email with my private email in ports I maintain with
@FreeBSD.org.
Original commitRevision:391030 
Friday, 19 Jun 2015
01:58 xmj search for other commits by this committer
net-im/skype4: improve pkg-message

- improve pkg-message
- set my FreeBSD.org address as maintainer

Sponsored by:	Perceivon OU
Original commitRevision:390099 
Thursday, 11 Jun 2015
14:58 xmj search for other commits by this committer
net-im/skype4: unbreak on 11.0-CURRENT

Changes:

  The "skype" binary works fine after recent update in linux compat layer when
  linux-c6-pulseaudio (libpulse.so.0) is not installed (but linprocfs(5) must be
  mounted into ${LINUXBASE}/proc). So:

  - Unbreak net-im/skype4 for __FreeBSD_version >= 1100075.
  - (temporarily) Disable PA dependency.

  Also:
  - Drop (indirect) PA dependencies.
  - Add tcp_wrappers-libs into linux-c6-pulseaudio-libs dependencies (used by
    libpulse.so.0)
  - Fix some portlint(1) warnings.

  Workaround: libpulse.so.0 can be replaced with PA wrapper from
  https://github.com/waterlaz/skype_oss_wrapper - then sound will work too (with
  mounted devfs(5) in ${LINUXBASE}/dev).

PR:		200608
Submitted by:	Andriy Voskoboinyk <s3erios@gmail.com>
Original commitRevision:389223 
Sunday, 26 Apr 2015
10:07 antoine search for other commits by this committer
Deprecate ports broken for more than 6 months
Original commitRevision:384771 
Wednesday, 8 Apr 2015
17:43 amdmi3 search for other commits by this committer
- Add CPE info

Approved by:	portmgr blanket
Original commitRevision:383598 
Tuesday, 7 Oct 2014
14:12 xmj search for other commits by this committer
net-im/skype4: mark as BROKEN

 - Mark as BOKEN due to missing syscalls

Differential Revision:	https://reviews.freebsd.org/D907
Approved by:	swills (mentor)
Original commitRevision:370337 
Monday, 22 Sep 2014
10:40 xmj search for other commits by this committer
Update CentOS base to 6.5, add userland ports

The Fedora 10 infrastructure ports have been in use since June 2009 and, while
having served a great deed, have become unsupported upstream and hence affected
by unfixed security vulnerabilities. In addition to that, many recent Linux
binaries need newer libc / stdlibc++ versions.

This commit adds the linux-c6- userland as drop-in replacement for the -f10
infrastructure, as well as upgrading the linux_base-c6 port to CentOS 6.5.

If you want to switch to linux-c6 ports, please define at /etc/make.conf:

    OVERRIDE_LINUX_BASE_PORT=c6
    OVERRIDE_LINUX_NONBASE_PORTS=c6
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Original commitRevision:368845 

Number of commits found: 24