Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
8185e200
Commit
8185e200
authored
Oct 24, 2016
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pkg: exclude missing packages on armv6
parent
9a279ae5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
Makefile
Makefile
+5
-4
defaults.mk
Mk/defaults.mk
+1
-0
README.md
README.md
+1
-0
No files found.
Makefile
View file @
8185e200
...
@@ -63,10 +63,11 @@ CORE_COMMENT?= OPNsense ${CORE_FAMILY} package
...
@@ -63,10 +63,11 @@ CORE_COMMENT?= OPNsense ${CORE_FAMILY} package
CORE_MAINTAINER
?=
franco@opnsense.org
CORE_MAINTAINER
?=
franco@opnsense.org
CORE_WWW
?=
https://opnsense.org/
CORE_WWW
?=
https://opnsense.org/
CORE_MESSAGE
?=
Thanks
for
all the fish...
CORE_MESSAGE
?=
Thanks
for
all the fish...
# CORE_DEPENDS_armv6 is empty
CORE_DEPENDS_amd64
?=
beep bsdinstaller
CORE_DEPENDS_i386
?=
${
CORE_DEPENDS_amd64
}
CORE_DEPENDS
?=
apinger
\
CORE_DEPENDS
?=
apinger
\
beep
\
bind910
\
bind910
\
bsdinstaller
\
bsnmp-regex
\
bsnmp-regex
\
bsnmp-ucd
\
bsnmp-ucd
\
ca_root_nss
\
ca_root_nss
\
...
@@ -175,7 +176,7 @@ manifest: want-git
...
@@ -175,7 +176,7 @@ manifest: want-git
@
echo
"prefix:
${
LOCALBASE
}
"
@
echo
"prefix:
${
LOCALBASE
}
"
@
echo
"vital: true"
@
echo
"vital: true"
@
echo
"deps: {"
@
echo
"deps: {"
@
for
CORE_DEPEND
in
${
CORE_DEPENDS
}
;
do
\
@
for
CORE_DEPEND
in
${
CORE_DEPENDS
_
${
ARCH
}}
${
CORE_DEPENDS
}
;
do
\
if
!
${
PKG
}
query
' %n: { version: "%v", origin: "%o" }'
\
if
!
${
PKG
}
query
' %n: { version: "%v", origin: "%o" }'
\
$$
{
CORE_DEPEND
}
;
then
\
$$
{
CORE_DEPEND
}
;
then
\
echo
">>> Missing dependency:
$$
{CORE_DEPEND}"
>
&2
;
\
echo
">>> Missing dependency:
$$
{CORE_DEPEND}"
>
&2
;
\
...
@@ -188,7 +189,7 @@ name: force
...
@@ -188,7 +189,7 @@ name: force
@
echo
${
CORE_NAME
}
@
echo
${
CORE_NAME
}
depends
:
force
depends
:
force
@
echo
${
CORE_DEPENDS
}
@
echo
${
CORE_DEPENDS
_
${
ARCH
}}
${
CORE_DEPENDS
}
PKG_SCRIPTS
=
+PRE_INSTALL +POST_INSTALL
\
PKG_SCRIPTS
=
+PRE_INSTALL +POST_INSTALL
\
+PRE_UPGRADE +POST_UPGRADE
\
+PRE_UPGRADE +POST_UPGRADE
\
...
...
Mk/defaults.mk
View file @
8185e200
...
@@ -30,6 +30,7 @@ OPENSSL?= ${LOCALBASE}/bin/openssl
...
@@ -30,6 +30,7 @@ OPENSSL?= ${LOCALBASE}/bin/openssl
PKG!= which pkg || echo true
PKG!= which pkg || echo true
GIT!= which git || echo true
GIT!= which git || echo true
ARCH!= uname -p
all-stub: all
all-stub: all
@echo "Nothing to do."
@echo "Nothing to do."
...
...
README.md
View file @
8185e200
...
@@ -59,6 +59,7 @@ needs to be fetched from an external location.
...
@@ -59,6 +59,7 @@ needs to be fetched from an external location.
Several OPTIONS exist to customise the package, e.g.:
Several OPTIONS exist to customise the package, e.g.:
*
CORE_DEPENDS: a list of required dependencies for the package
*
CORE_DEPENDS: a list of required dependencies for the package
*
CORE_DEPENDS_ARCH: a list of special
<ARCH>
-required packages
*
CORE_ORIGIN: sets a FreeBSD compatible package/ports origin
*
CORE_ORIGIN: sets a FreeBSD compatible package/ports origin
*
FLAVOUR: can be set to "OpenSSL" (default) or "LibreSSL"
*
FLAVOUR: can be set to "OpenSSL" (default) or "LibreSSL"
*
CORE_COMMENT: a short description of the package
*
CORE_COMMENT: a short description of the package
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment