| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
libdata/pkgconfig.
Fix ports that where installing the file in the wrong place.
PR: 218067
Submitted by: mat
Exp-run by: antoine
Reviewed by: rene, antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D10129
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Only noticed by broken -export-symbols-regex (libtool) in audio/calf.
--- /usr/local/libdata/pkgconfig/lv2core.pc before
+++ /usr/local/libdata/pkgconfig/lv2core.pc after
@@ -1,10 +1,10 @@
prefix=/usr/local
-exec_prefix=
-libdir=/usr/local/lib
-includedir=/usr/local/include
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
Name: lv2core
-Version:
+Version: 12.0
Description: An audio plugin interface specification.
Libs:
Cflags: -I${includedir}
PR: 213285
Submitted by: Michael Beer <beerml@sigma6audio.de> (maintainer)
|
| |
|
|
PR: 197126, 213285 (based on)
Submitted by: Radim Kolar <hsn@sendmail.cz>, Michael Beer <beerml@sigma6audio.de>
LV2 is an open standard for audio plugins, used by hundreds of plugins
and other projects. At its core, LV2 is a simple stable interface,
accompanied by extensions which add functionality to support the needs
of increasingly powerful audio software.
http://lv2plug.in/
|