diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2019-02-16 21:55:29 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2019-02-16 21:55:29 +0300 |
commit | 653ee882d074904770d80d2f8268b29452015982 (patch) | |
tree | 719076a7bc96452de402e9bfd88534a615de15d4 | |
parent | 753af63932d4c425d711bc5c9d0ef008758f9a2a (diff) |
added nbd
-rw-r--r-- | packages/sys-block/nbd/nbd-scm.exheres-0 | 10 | ||||
-rw-r--r-- | packages/sys-block/nbd/nbd.exlib | 17 |
2 files changed, 27 insertions, 0 deletions
diff --git a/packages/sys-block/nbd/nbd-scm.exheres-0 b/packages/sys-block/nbd/nbd-scm.exheres-0 new file mode 100644 index 0000000..5d563bd --- /dev/null +++ b/packages/sys-block/nbd/nbd-scm.exheres-0 @@ -0,0 +1,10 @@ +# Copyright 2019 Gluzskiy Alexandr <sss@sss.chaoslab.ru> +# Distributed under the terms of the GNU General Public License v2 + +require nbd + +PLATFORMS="~amd64 ~x86" + +src_prepare() { + edo ./autogen.sh +} diff --git a/packages/sys-block/nbd/nbd.exlib b/packages/sys-block/nbd/nbd.exlib new file mode 100644 index 0000000..c02d9e3 --- /dev/null +++ b/packages/sys-block/nbd/nbd.exlib @@ -0,0 +1,17 @@ +# Distributed under the terms of the GNU General Public License v2 +# Copyright 2019 Gluzskiy Alexandr <sss@sss.chaoslab.ru> + +require github [ user=NetworkBlockDevice tag=v${PV} ] +require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 ] ] + +SLOT="0" +LICENCES="GPL-2" + +DEPENDENCIES=" + build: + app-text/docbook-utils +" + +#tests require net, can be configured via esandbox allow_net +#disabled for now +RESTRICT="test" |