diff options
author | 2017-03-29 15:03:52 +0300 | |
---|---|---|
committer | 2017-03-29 15:03:52 +0300 | |
commit | bf145a6810e4f6423787459c479b4a38f2abcc47 (patch) | |
tree | a9dbc7ea59e2bd99aea300b8501e9c86d426e430 /dev-libs/librin/librin-9999.ebuild | |
download | rin-ebuilds-bf145a6810e4f6423787459c479b4a38f2abcc47.tar.gz rin-ebuilds-bf145a6810e4f6423787459c479b4a38f2abcc47.tar.bz2 rin-ebuilds-bf145a6810e4f6423787459c479b4a38f2abcc47.zip |
initial commit.
Diffstat (limited to 'dev-libs/librin/librin-9999.ebuild')
-rw-r--r-- | dev-libs/librin/librin-9999.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-libs/librin/librin-9999.ebuild b/dev-libs/librin/librin-9999.ebuild new file mode 100644 index 0000000..ae9a902 --- /dev/null +++ b/dev-libs/librin/librin-9999.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit autotools eutils multilib-minimal + +if [[ ${PV} = 9999 ]]; then + inherit git-r3 +fi + +DESCRIPTION="The Rin library" +HOMEPAGE="https://git.seriouss.am/librin/" + +if [[ ${PV} = 9999 ]]; then + EGIT_REPO_URI="https://git.seriouss.am/librin" + KEYWORDS="" +else + SRC_URI="https://git.seriouss.am/librin/snapshot/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="LGPL-2.1" +SLOT="0" +RESTRICT="mirror test" + +DEPEND="" + +RDEPEND="${DEPEND}" + +src_prepare() { + eautoreconf +} + +multilib_src_configure() { + local myconf=( + ) + ECONF_SOURCE=${S} \ + econf "${myconf[@]}" +} + +multilib_src_compile() { + default +} + +multilib_src_install() { + default +} + +multilib_src_install_all() { + prune_libtool_files --all +} |