mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 05:10:20 +00:00
e1f95af4ba
Set ac_cv_prog_cc_c23=no to prevent autoconf from detecting C23 compiler support, avoiding potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
28 lines
1.1 KiB
BlitzBasic
28 lines
1.1 KiB
BlitzBasic
SUMMARY = "An Enhanced Printer Spooler"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-2.0-only | Artistic-1.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c6570d8d699af1883db9d0e733ac9bfb"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
|
|
SRC_URI[sha256sum] = "c92597671f4c7cbe8bb3f38fbc4283354db84c6abff1efb675fa2e120421915d"
|
|
|
|
UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/lprng/files/lprng/"
|
|
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar"
|
|
|
|
inherit autotools gettext
|
|
CACHED_CONFIGUREVARS += "ac_cv_prog_cc_c23=no"
|
|
|
|
EXTRA_OECONF = "--disable-ssl --disable-kerberos --enable-force_localhost \
|
|
CHOWN=${base_bindir}/chown CHGRP=${base_bindir}/chgrp \
|
|
OPENSSL=${bindir}/openssl PRUTIL=${bindir}/pr"
|
|
FILES:${PN}-dbg += "${libdir}/lprng/filters/.debug"
|
|
|
|
# configure: WARNING: Program 'clear' is not found. Set environment CLEAR=no if you do not want to use it
|
|
export CLEAR = "no"
|
|
|
|
do_install:append() {
|
|
mv ${D}/etc/printcap.sample ${D}/etc/printcap
|
|
mv ${D}/etc/lpd/lpd.conf.sample ${D}/etc/lpd/lpd.conf
|
|
mv ${D}/etc/lpd/lpd.perms.sample ${D}/etc/lpd/lpd.perms
|
|
}
|