Rework the way <packagename>.ucl files are generated.
One of the major pain points with how this was implemented is the requirement of in-tree, hard-coded <name>.ucl, as well as <name>-<suffix>.ucl where <suffix> can be lib32, profile, development, debug, or any combination of the four. This created significant overhead when adding new packages and any of the files in any of the combinations were missing. Instead of test(1)-ing if the <packagename>.ucl file exists, hand off to a script to figure out what the final ucl file name should be before invoking pkg(8). The default behavior is 'template.ucl' is used as a fallback. This affects only the userland packages, as the kernel code is already smart enough to handle these variations. Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
b3075f337b
commit
5c52b2f5ca
@ -1393,22 +1393,13 @@ create-world-packages: _pkgbootstrap
|
|||||||
${DESTDIR}/METALOG
|
${DESTDIR}/METALOG
|
||||||
@for plist in ${DESTDIR}/*.plist; do \
|
@for plist in ${DESTDIR}/*.plist; do \
|
||||||
plist=$${plist##*/} ; \
|
plist=$${plist##*/} ; \
|
||||||
test -f ${SRCDIR}/release/packages/$${plist%.plist}.ucl || \
|
pkgname=$${plist%.plist} ; \
|
||||||
( echo "Unkown package FreeBSD-$${plist%.plist}" ; false ) ; \
|
sh ${SRCDIR}/release/packages/generate-ucl.sh -o $${pkgname} \
|
||||||
|
-s ${SRCDIR} -u ${DESTDIR}/$${pkgname}.ucl ; \
|
||||||
done
|
done
|
||||||
@cap_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VCAP_MKDB_ENDIAN` ; \
|
@for plist in ${DESTDIR}/*.plist; do \
|
||||||
pwd_arg=`cd ${SRCDIR}/etc ; ${MAKE} -VPWD_MKDB_ENDIAN` ; \
|
|
||||||
for plist in ${DESTDIR}/*.plist; do \
|
|
||||||
plist=$${plist##*/} ; \
|
plist=$${plist##*/} ; \
|
||||||
pkgname=$${plist%.plist} ; \
|
pkgname=$${plist%.plist} ; \
|
||||||
sed -e "s/%VERSION%/${PKG_VERSION}/" \
|
|
||||||
-e "s/%PKGNAME%/$${pkgname}/" \
|
|
||||||
-e "s/%COMMENT%/Generic comment for $${pkgname}/" \
|
|
||||||
-e "s/%DESC%/Generic description for $${pkgname}/" \
|
|
||||||
-e "s/%CAP_MKDB_ENDIAN%/$${cap_arg}/g" \
|
|
||||||
-e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \
|
|
||||||
${SRCDIR}/release/packages/$${pkgname}.ucl \
|
|
||||||
> ${DESTDIR}/$${pkgname}.ucl ; \
|
|
||||||
awk -F\" ' \
|
awk -F\" ' \
|
||||||
/^name/ { printf("===> Creating %s-", $$2); next } \
|
/^name/ { printf("===> Creating %s-", $$2); next } \
|
||||||
/^version/ { print $$2; next } \
|
/^version/ { print $$2; next } \
|
||||||
|
67
release/packages/Makefile.package
Normal file
67
release/packages/Makefile.package
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
acct_DESC= Accounting Utilties
|
||||||
|
acpi_DESC= ACPI Utilities
|
||||||
|
amd_DESC= AMD Utilities
|
||||||
|
apm_DESC= APM Utilities
|
||||||
|
at_DESC= AT Utilities
|
||||||
|
autofs_DESC= Autofs Utilities
|
||||||
|
bhyve_DESC= Bhyve Utilities
|
||||||
|
binutils_DESC= Binutils
|
||||||
|
bsdinstall_DESC= BSDInstall Utilities
|
||||||
|
bsnmp_DESC= BSNMP Utilities
|
||||||
|
clang_DESC= Clang Utilities
|
||||||
|
docs_DESC= Documentation
|
||||||
|
dma_DESC= DMA Mail Agent Utilities
|
||||||
|
ee_DESC= Easy Editor Utilities
|
||||||
|
gdb_DESC= GDB Utilities
|
||||||
|
groff_DESC= Groff Utilities
|
||||||
|
jail_DESC= Jail Utilities
|
||||||
|
kernel_DESC= FreeBSD Kernel
|
||||||
|
rcmds_DESC= Remote Command Utilities
|
||||||
|
manuals_DESC= Manual Pages
|
||||||
|
ssh_DESC= Secure Shell Utilities
|
||||||
|
svn_DESC= Subversion Version Conrol System
|
||||||
|
syscons_DESC= Syscons Console
|
||||||
|
tests_DESC= Test Suite
|
||||||
|
unbound_DESC= Unbound DNS Resolver
|
||||||
|
vi_DESC= Vi Editor
|
||||||
|
debug_DESC= FreeBSD Base System (Debugging Symbols)
|
||||||
|
development_DESC= FreeBSD Base System (Development Files)
|
||||||
|
lib32_DESC= FreeBSD Base System (32-bit Libraries)
|
||||||
|
profile_DESC= FreeBSD Base System (Profiling Libraries)
|
||||||
|
runtime_DESC= FreeBSD Base System
|
||||||
|
|
||||||
|
acct_COMMENT= Accounting Utilties
|
||||||
|
acpi_COMMENT= ACPI Utilities
|
||||||
|
amd_COMMENT= AMD Utilities
|
||||||
|
apm_COMMENT= APM Utilities
|
||||||
|
at_COMMENT= AT Utilities
|
||||||
|
autofs_COMMENT= Autofs Utilities
|
||||||
|
bhyve_COMMENT= Bhyve Utilities
|
||||||
|
binutils_COMMENT= Binutils
|
||||||
|
bsdinstall_COMMENT= BSDInstall Utilities
|
||||||
|
bsnmp_COMMENT= BSNMP Utilities
|
||||||
|
clang_COMMENT= Clang Utilities
|
||||||
|
docs_COMMENT= Documentation
|
||||||
|
dma_COMMENT= DMA Mail Agent Utilities
|
||||||
|
ee_COMMENT= Easy Editor Utilities
|
||||||
|
gdb_COMMENT= GDB Utilities
|
||||||
|
groff_COMMENT= Groff Utilities
|
||||||
|
jail_COMMENT= Jail Utilities
|
||||||
|
kernel_COMMENT= FreeBSD Kernel
|
||||||
|
rcmds_COMMENT= Remote Command Utilities
|
||||||
|
manuals_COMMENT= Manual Pages
|
||||||
|
ssh_COMMENT= Secure Shell Utilities
|
||||||
|
svn_COMMENT= Subversion Version Conrol System
|
||||||
|
syscons_COMMENT= Syscons Console
|
||||||
|
tests_COMMENT= Test Suite
|
||||||
|
unbound_COMMENT= Unbound DNS Resolver
|
||||||
|
vi_COMMENT= Vi Editor
|
||||||
|
debug_COMMENT= FreeBSD Base System (Debugging Symbols)
|
||||||
|
development_COMMENT= FreeBSD Base System (Development Files)
|
||||||
|
lib32_COMMENT= FreeBSD Base System (32-bit Libraries)
|
||||||
|
profile_COMMENT= FreeBSD Base System (Profiling Libraries)
|
||||||
|
runtime_COMMENT= FreeBSD Base System
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Accounting Tools (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-acct: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Accounting Tools"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "ACPI tools (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-acpi: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "ACPI tools"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "BSD 4.4 Automounter (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-amd: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "BSD 4.4 Automounter"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Advanced Power Management Utilities (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-apm: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Advanced Power Management Utilities"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "at(1) and related utilities (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-at: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "at(1) and related utilities"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Autofs(5) Utilities (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-autofs: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Autofs(5) Utilities"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "The BSD Hypervisor (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
bhyve, the "BSD hypervisor" is a hypervisor/virtual machine manager developed on
|
|
||||||
FreeBSD and relies on modern CPU features such as Extended Page Tables (EPT) and
|
|
||||||
VirtIO network and storage drivers
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-bhyve: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "The BSD Hypervisor"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -9,12 +9,10 @@ prefix = "/"
|
|||||||
licenselogic = "single"
|
licenselogic = "single"
|
||||||
licenses = [ BSD2CLAUSE ]
|
licenses = [ BSD2CLAUSE ]
|
||||||
desc = <<EOD
|
desc = <<EOD
|
||||||
bhyve, the "BSD hypervisor" is a hypervisor/virtual machine manager developed on
|
%DESC%
|
||||||
FreeBSD and relies on modern CPU features such as Extended Page Tables (EPT) and
|
|
||||||
VirtIO network and storage drivers
|
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "GNU binutils (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ GPLv2 ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-binutils: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "GNU binutils"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Installer (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-bsdinstall: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Installer"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "SNMP daemon and userland tools (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-bsnmp: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "SNMP development"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-bsnmp: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "SNMP 32-bit libraries (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-bsnmp-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "SNMP 32-bit development"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-bsnmp-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "SNMP 32-bit libraries (profiling)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-bsnmp-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "SNMP 32-bit libraries"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-runtime: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "SNMP libraries (profiling)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-bsnmp: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "SNMP daemon and userland tools"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Clang compiler tools (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-clang: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Clang compiler tools"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "%COMMENT% (debugging symbols)"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "DragonFly Mail Agent (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
The DragonFly Mail Agent, a small Mail Transport Agent (MTA), designed for
|
|
||||||
home and office use.
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-dma: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "DragonFly Mail Agent"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -9,11 +9,10 @@ prefix = "/"
|
|||||||
licenselogic = "single"
|
licenselogic = "single"
|
||||||
licenses = [ BSD2CLAUSE ]
|
licenses = [ BSD2CLAUSE ]
|
||||||
desc = <<EOD
|
desc = <<EOD
|
||||||
The DragonFly Mail Agent, a small Mail Transport Agent (MTA), designed for
|
%DESC%
|
||||||
home and office use.
|
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "ee(1) Utility (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-ee: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "ee(1) Utility"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "GNU gdb (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ GPLv2 ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-gdb: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "GNU gdb"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
138
release/packages/generate-ucl.sh
Executable file
138
release/packages/generate-ucl.sh
Executable file
@ -0,0 +1,138 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
main() {
|
||||||
|
desc=
|
||||||
|
comment=
|
||||||
|
debug=
|
||||||
|
uclsource=
|
||||||
|
while getopts "do:s:u:" arg; do
|
||||||
|
case ${arg} in
|
||||||
|
d)
|
||||||
|
debug=1
|
||||||
|
;;
|
||||||
|
o)
|
||||||
|
outname="${OPTARG}"
|
||||||
|
origname="${OPTARG}"
|
||||||
|
;;
|
||||||
|
s)
|
||||||
|
srctree="${OPTARG}"
|
||||||
|
;;
|
||||||
|
u)
|
||||||
|
uclfile="${OPTARG}"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unknown argument"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
shift $(( ${OPTIND} - 1 ))
|
||||||
|
|
||||||
|
outname="$(echo ${outname} | tr '-' '_')"
|
||||||
|
|
||||||
|
case "${outname}" in
|
||||||
|
*_lib32_development)
|
||||||
|
outname="${outname%%_lib32_development}"
|
||||||
|
_descr="32-bit Libraries, Development Files"
|
||||||
|
pkgdeps="${outname}"
|
||||||
|
;;
|
||||||
|
*_lib32_debug)
|
||||||
|
outname="${outname%%_lib32_debug}"
|
||||||
|
_descr="32-bit Libraries, Debugging Symbols"
|
||||||
|
pkgdeps="${outname}"
|
||||||
|
;;
|
||||||
|
*_lib32_profile)
|
||||||
|
outname="${outname%%_lib32_profile}"
|
||||||
|
_descr="32-bit Libraries, Profiling"
|
||||||
|
pkgdeps="${outname}"
|
||||||
|
;;
|
||||||
|
*_lib32)
|
||||||
|
outname="${outname%%_lib32}"
|
||||||
|
_descr="32-bit Libraries"
|
||||||
|
pkgdeps="${outname}"
|
||||||
|
;;
|
||||||
|
*_development)
|
||||||
|
outname="${outname%%_development}"
|
||||||
|
_descr="Development Files"
|
||||||
|
pkgdeps="${outname}"
|
||||||
|
;;
|
||||||
|
*_profile)
|
||||||
|
outname="${outname%%_profile}"
|
||||||
|
_descr="Profiling Libraries"
|
||||||
|
pkgdeps="${outname}"
|
||||||
|
;;
|
||||||
|
*_debug)
|
||||||
|
outname="${outname%%_debug}"
|
||||||
|
_descr="Debugging Symbols"
|
||||||
|
pkgdeps="${outname}"
|
||||||
|
;;
|
||||||
|
*_manuals)
|
||||||
|
outname="${origname}"
|
||||||
|
pkgdeps="runtime"
|
||||||
|
;;
|
||||||
|
runtime)
|
||||||
|
outname="runtime"
|
||||||
|
uclfile="${uclfile}"
|
||||||
|
;;
|
||||||
|
${origname})
|
||||||
|
pkgdeps="runtime"
|
||||||
|
;;
|
||||||
|
debug|development|lib32|profile)
|
||||||
|
uclfile="${outname##*}${uclfile}"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
uclfile="${outname##*}${origname}"
|
||||||
|
outname="${outname##*}${origname}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
outname="${outname%%_*}"
|
||||||
|
|
||||||
|
desc="$(make -C ${srctree}/release/packages -f Makefile.package -V ${outname}_DESC)"
|
||||||
|
comment="$(make -C ${srctree}/release/packages -f Makefile.package -V ${outname}_COMMENT)"
|
||||||
|
|
||||||
|
uclsource="${srctree}/release/packages/${outname}.ucl"
|
||||||
|
if [ ! -e "${uclsource}" ]; then
|
||||||
|
uclsource="${srctree}/release/packages/template.ucl"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "${debug}" ]; then
|
||||||
|
echo ""
|
||||||
|
echo "==============================================================="
|
||||||
|
echo "DEBUG:"
|
||||||
|
echo "_descr=${_descr}"
|
||||||
|
echo "outname=${outname}"
|
||||||
|
echo "origname=${origname}"
|
||||||
|
echo "srctree=${srctree}"
|
||||||
|
echo "uclfile=${uclfile}"
|
||||||
|
echo "desc=${desc}"
|
||||||
|
echo "comment=${comment}"
|
||||||
|
echo "cp ${uclsource} -> ${uclfile}"
|
||||||
|
echo "==============================================================="
|
||||||
|
echo ""
|
||||||
|
echo ""
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
|
||||||
|
[ -z "${comment}" ] && comment="${outname} package"
|
||||||
|
[ ! -z "${_descr}" ] && comment="${comment} (${_descr})"
|
||||||
|
[ -z "${desc}" ] && desc="${outname} package"
|
||||||
|
|
||||||
|
cp "${uclsource}" "${uclfile}"
|
||||||
|
cap_arg="$(make -C ${srctree}/etc -VCAP_MKDB_ENDIAN)"
|
||||||
|
pwd_arg="$(make -C ${srctree}/etc -VPWD_MKDB_ENDIAN)"
|
||||||
|
sed -i '' -e "s/%VERSION%/${PKG_VERSION}/" \
|
||||||
|
-e "s/%PKGNAME%/${origname}/" \
|
||||||
|
-e "s/%COMMENT%/${comment}/" \
|
||||||
|
-e "s/%DESC%/${desc}/" \
|
||||||
|
-e "s/%CAP_MKDB_ENDIAN%/${cap_arg}/g" \
|
||||||
|
-e "s/%PWD_MKDB_ENDIAN%/${pwd_arg}/g" \
|
||||||
|
-e "s/%PKGDEPS%/${pkgdeps}/" \
|
||||||
|
${uclfile}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
main "${@}"
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "GNU groff (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ GPLv2 ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-groff: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "GNU groff"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Jail utilities (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-jail: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Jail utilities development"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-jail: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Jail 32-bit libraries (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-jail-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Jail 32-bit development"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-jail-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Jail 32-bit libraries (profiling)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-jail-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Jail 32-bit libraries"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-runtime: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Jail libraries (profiling)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-jail: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Jail utilities"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "32-bit libraries (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "32-bit libraries"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "32-bit libraries"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Remote Command Tools (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-rcmds: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Remote Command Tools"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "FreeBSD runtime manual pages"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -17,10 +17,3 @@ scripts: {
|
|||||||
pwd_mkdb %PWD_MKDB_ENDIAN% -i -p -d ${PKG_ROOTDIR}/etc ${PKG_ROOTDIR}/etc/master.passwd
|
pwd_mkdb %PWD_MKDB_ENDIAN% -i -p -d ${PKG_ROOTDIR}/etc ${PKG_ROOTDIR}/etc/master.passwd
|
||||||
EOD
|
EOD
|
||||||
}
|
}
|
||||||
deps: {
|
|
||||||
FreeBSD-runtime: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Secure SHell (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ ISCL ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-ssh: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Secure SHell"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ ISCL ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-ssh: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Secure SHell 32-bit libraries (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ ISCL ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-ssh-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Secure SHell 32-bit libraries"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ ISCL ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-ssh-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Secure SHell 32-bit libraries"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ ISCL ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-ssh-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Secure SHell 32-bit libraries"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ ISCL ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-runtime: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Secure SHell"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ ISCL ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-ssh: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Secure SHell"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Version control system (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ APACHE20 ]
|
|
||||||
desc = <<EOD
|
|
||||||
Lite version of the Subversion version control system
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-svn: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Version control system"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -9,10 +9,10 @@ prefix = "/"
|
|||||||
licenselogic = "single"
|
licenselogic = "single"
|
||||||
licenses = [ APACHE20 ]
|
licenses = [ APACHE20 ]
|
||||||
desc = <<EOD
|
desc = <<EOD
|
||||||
Lite version of the Subversion version control system
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "syscons(4) support files"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -9,10 +9,10 @@ prefix = "/"
|
|||||||
licenselogic = "single"
|
licenselogic = "single"
|
||||||
licenses = [ BSD2CLAUSE ]
|
licenses = [ BSD2CLAUSE ]
|
||||||
desc = <<EOD
|
desc = <<EOD
|
||||||
syscons(4) support files such as keyboard maps, fonts and screen output maps.
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "32-bit libraries"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -11,10 +11,3 @@ licenses = [ BSD2CLAUSE ]
|
|||||||
desc = <<EOD
|
desc = <<EOD
|
||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
|
||||||
FreeBSD-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "%COMMENT% (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-tests: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "%COMMENT% (development)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-tests: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "%COMMENT% (profiling)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-tests: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Validating, recursive, and caching DNS resolver (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD4CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
Unbound is a recursive-only caching DNS server which can perform DNSSEC
|
|
||||||
validation of results
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-unbound: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Validating, recursive, and caching DNS resolver"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD4CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
Unbound is a recursive-only caching DNS server which can perform DNSSEC
|
|
||||||
validation of results
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-unbound: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Validating, recursive, and caching DNS resolver, 32-bit libraries (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD4CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
Unbound is a recursive-only caching DNS server which can perform DNSSEC
|
|
||||||
validation of results
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-unbound-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Validating, recursive, and caching DNS resolver"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD4CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
Unbound is a recursive-only caching DNS server which can perform DNSSEC
|
|
||||||
validation of results
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-unbound-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Validating, recursive, and caching DNS resolver"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD4CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
Unbound is a recursive-only caching DNS server which can perform DNSSEC
|
|
||||||
validation of results
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-unbound-lib32: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Validating, recursive, and caching DNS resolver, 32-bit libraries"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD4CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
Unbound is a recursive-only caching DNS server which can perform DNSSEC
|
|
||||||
validation of results
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-runtime: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Validating, recursive, and caching DNS resolver"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD4CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
Unbound is a recursive-only caching DNS server which can perform DNSSEC
|
|
||||||
validation of results
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-unbound: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Validating, recursive, and caching DNS resolver"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -9,11 +9,10 @@ prefix = "/"
|
|||||||
licenselogic = "single"
|
licenselogic = "single"
|
||||||
licenses = [ BSD4CLAUSE ]
|
licenses = [ BSD4CLAUSE ]
|
||||||
desc = <<EOD
|
desc = <<EOD
|
||||||
Unbound is a recursive-only caching DNS server which can perform DNSSEC
|
%DESC%
|
||||||
validation of results
|
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
|
||||||
origin = "base"
|
|
||||||
version = "%VERSION%"
|
|
||||||
comment = "Vi Editor (debugging symbols)"
|
|
||||||
categories = [ base ]
|
|
||||||
maintainer = "re@FreeBSD.org"
|
|
||||||
www = "https://www.FreeBSD.org"
|
|
||||||
prefix = "/"
|
|
||||||
licenselogic = "single"
|
|
||||||
licenses = [ BSD2CLAUSE ]
|
|
||||||
desc = <<EOD
|
|
||||||
%DESC%
|
|
||||||
EOD
|
|
||||||
deps: {
|
|
||||||
FreeBSD-vi: {
|
|
||||||
origin: "base",
|
|
||||||
version: "%VERSION%"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
name = "FreeBSD-%PKGNAME%"
|
name = "FreeBSD-%PKGNAME%"
|
||||||
origin = "base"
|
origin = "base"
|
||||||
version = "%VERSION%"
|
version = "%VERSION%"
|
||||||
comment = "Vi Editor"
|
comment = "%COMMENT%"
|
||||||
categories = [ base ]
|
categories = [ base ]
|
||||||
maintainer = "re@FreeBSD.org"
|
maintainer = "re@FreeBSD.org"
|
||||||
www = "https://www.FreeBSD.org"
|
www = "https://www.FreeBSD.org"
|
||||||
@ -12,7 +12,7 @@ desc = <<EOD
|
|||||||
%DESC%
|
%DESC%
|
||||||
EOD
|
EOD
|
||||||
deps: {
|
deps: {
|
||||||
FreeBSD-runtime: {
|
FreeBSD-%PKGDEPS%: {
|
||||||
origin: "base",
|
origin: "base",
|
||||||
version: "%VERSION%"
|
version: "%VERSION%"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user