diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2018-05-29 09:30:47 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2018-05-29 09:30:47 +0000 |
commit | a2c3e9f927e51248377a2b76616f9369074dee2f (patch) | |
tree | 02e145cc0b2f4d463db37314e5004d7f1f547ae0 /devel/ding-libs/files/patch-configure | |
parent | New port: audio/zam-plugins-lv2: Collection of LADSPA/LV2/VST/JACK audio plugins (diff) |
devel/ding-libs: Update to 0.6.1
- Move to new home on pagure.org, fedorahosted.org is gone. [1]
While here
- Update WWW
- Take maintainership. The current maintainer has not responded
for over a year.
- Remove USES=autoreconf. It was added in ports
r372261 for patching in fmemopen() support but hasn't been needed
anymore since ports r395775 which dropped FreeBSD 8.x support.
- Remove bogus USES=gettext. This port only wants to link with
libintl, so only gettext-runtime is required.
- Fix license. Some files are LGPL3+ others are GPLv3+.
- Add test target
- Do not build static libraries
Changes: https://pagure.io/SSSD/ding-libs/commits/master
PR: 218098 [1]
Reported by: asomers [1]
Submitted by: w.schwarzenfeld@utanet.at [1]
Diffstat (limited to 'devel/ding-libs/files/patch-configure')
-rw-r--r-- | devel/ding-libs/files/patch-configure | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/devel/ding-libs/files/patch-configure b/devel/ding-libs/files/patch-configure new file mode 100644 index 000000000000..6240169e6680 --- /dev/null +++ b/devel/ding-libs/files/patch-configure @@ -0,0 +1,15 @@ +Get rid of bashism + +https://pagure.io/SSSD/ding-libs/c/90f715c882a715f8cb827db14167ce8976a0fcd9 + +--- configure.orig 2017-09-22 15:44:32 UTC ++++ configure +@@ -12658,7 +12658,7 @@ BASICOBJECTS_VERSION=0.1.1 + INI_CONFIG_VERSION=1.3.1 + + +- if git log -1 &>/dev/null; then ++ if git log -1 > /dev/null 2>&1; then + GIT_CHECKOUT_TRUE= + GIT_CHECKOUT_FALSE='#' + else |