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: textproc/liblrdf/files/patch-configure.ac

Number of commits found: 2

Friday, 5 Oct 2018
16:22 fernape search for other commits by this committer
textproc/liblrdf: update to 0.6.1

While here:

* Reorder some variables.
* Remove post-patch section
* Regenerate patch with makepatch

Accumulated change log:

* Remove a bogus symlink, and release some merged changes that resolve licence
issues.
* Removed more stale auto* files

Reported by:	portscout
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D17422
Original commitRevision:481283 
Wednesday, 22 Aug 2012
21:55 rakuco search for other commits by this committer
Make the port build if textproc/raptor is installed.

Both textproc/raptor and textproc/raptor2 provide a raptor.h header; the
former puts it in ${LOCALBASE}/include, whereas the latter puts it into
${LOCALBASE}/include/raptor2.

The way CPPFLAGS and LDFLAGS were changed so far, -I${LOCALBASE}/include was
passed to the compiler before -I${LOCALBASE}/include/raptor2, so the raptor1
headers were picked up and the build failed.

The fix is consists of several separate adjustments:
  - The port only depends on raptor2 (and obtains the required compiler and
    linker flags via pkg-config) and optionally on OpenSSL from ports in
    case one has installed it.
    We thus need USE_OPENSSL and OPENSSLINC/OPENSSLLIB.
  - Due to the other the CFLAGS are defined in the port's configure.ac, we
    need to make raptor2's CFLAGS be passed before the rest, so
    -I${LOCALBASE}/include/raptor2 is passed to the compiler before other
    paths such as the infamous ${LOCALBASE}/include.
  - We need to change CFLAGS instead of CPPFLAGS, otherwise the OpenSSL
    CFLAGS still come before the actual CFLAGS and the problem persists.
Original commit

Number of commits found: 2