Add rcw and rexylib ebuilds
This commit is contained in:
parent
5bda3b5124
commit
529ffda75a
1
dev-libs/rcw/Manifest
Normal file
1
dev-libs/rcw/Manifest
Normal file
@ -0,0 +1 @@
|
||||
DIST rcw-v0.1.0.tar.gz 21042 BLAKE2B 2e5341ed0caf4bf40a6d897d6ccfae1c73d11933835cd7a9270cf1da8696077f63e7317ceb4572ad969bcd584b0d5564e67bf1779525b91828ea9b552ab5c46b SHA512 1122079422ccb1d1679fb223a3fea8e0dbb00ffdabda9249d06bd4c10a7263b806eb70aaa31e25e2378f29f2287dce97391d679bde61a0a67ade42c6d6afb7d6
|
||||
37
dev-libs/rcw/rcw-0.1.0.ebuild
Normal file
37
dev-libs/rcw/rcw-0.1.0.ebuild
Normal file
@ -0,0 +1,37 @@
|
||||
# Copyright 2021 rexy712
|
||||
# Distributed under the terms of the GNU General Public License v3
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake-multilib
|
||||
|
||||
MY_PV="v${PV}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
DESCRIPTION="A libcurl wrapper for C++"
|
||||
HOMEPAGE="https://gitlab.com/rexy712/rcw"
|
||||
SRC_URI="https://gitlab.com/rexy712/rcw/-/archive/${MY_PV}/rcw-${MY_PV}.tar.gz"
|
||||
|
||||
LICENSE="AGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="static-libs"
|
||||
|
||||
RDEPEND="
|
||||
net-misc/curl[ssl]
|
||||
dev-libs/rexylib"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/cmake"
|
||||
BDEPEND=""
|
||||
|
||||
src_prepare(){
|
||||
cmake-utils_src_prepare
|
||||
}
|
||||
src_configure(){
|
||||
local mycmakeargs=(
|
||||
-DENABLE_SHARED=$(usex static-libs OFF ON)
|
||||
-DBUILD_TESTS=OFF
|
||||
)
|
||||
cmake-multilib_src_configure
|
||||
}
|
||||
1
dev-libs/rexylib/Manifest
Normal file
1
dev-libs/rexylib/Manifest
Normal file
@ -0,0 +1 @@
|
||||
DIST rexylib-v0.1.0.tar.gz 39284 BLAKE2B 4d58dbdb138ddbb41146c2a1ebd12baa39924d12c6fa237ac8940017eee1b5e693136ebf9809324e563af7abb6d0f8a458017a5e843713ba3abd1830af8e36e4 SHA512 2a033f3cea9df0e5b7e5717bad08b73469c69aaa67a0ac6e5c52aaa62e03f745a69e1347043a0ef1a31d86976355bcc74cd78e78b9abfb7ddd4cb7ad8b3c4337
|
||||
35
dev-libs/rexylib/rexylib-0.1.0.ebuild
Normal file
35
dev-libs/rexylib/rexylib-0.1.0.ebuild
Normal file
@ -0,0 +1,35 @@
|
||||
# Copyright 2021 rexy712
|
||||
# Distributed under the terms of the GNU General Public License v3
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake-multilib
|
||||
|
||||
MY_PV="v${PV}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
DESCRIPTION="Rexy's personal library of misc stuff"
|
||||
HOMEPAGE="https://gitlab.com/rexy712/rexylib"
|
||||
SRC_URI="https://gitlab.com/rexy712/rexylib/-/archive/${MY_PV}/rexylib-${MY_PV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="static-libs"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/cmake"
|
||||
BDEPEND=""
|
||||
|
||||
src_prepare(){
|
||||
cmake-utils_src_prepare
|
||||
}
|
||||
src_configure(){
|
||||
local mycmakeargs=(
|
||||
-DENABLE_SHARED=$(usex static-libs OFF ON)
|
||||
-DBUILD_TESTS=OFF
|
||||
)
|
||||
cmake-multilib_src_configure
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user