sys-auth/realmd: Add ebuild

This isn't in upstream portage, so we'll keep it in coreos-overlay
This commit is contained in:
Matthew Garrett 2016-04-11 11:36:37 -07:00
parent 59e690fc69
commit 914cdb3ad2
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST realmd-0.16.2.tar.gz 461698 SHA256 abcdcd48c46bddd5b5f3716fd036f7436f2df1796c2e3bf345ae92a9a76801f2 SHA512 ff59825a4ddbf291dcc5c941266b48b784f98565c075dadada9305983e7a1dce21acd72c3f75495ec2b1f19884e7c46929a78cc364450316a4c0876186bd596a

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>mjg59@coreos.com</email>
<name>Matthew Garrett</name>
</maintainer>
</pkgmetadata>

View File

@ -0,0 +1,40 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
AUTOTOOLS_AUTORECONF=1
inherit autotools-utils systemd
DESCRIPTION="DBus service for configuring kerberos and other online identities"
HOMEPAGE="http://cgit.freedesktop.org/realmd/realmd/"
SRC_URI="http://www.freedesktop.org/software/realmd/releases/${P}.tar.gz"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="amd64 x86 arm64"
IUSE="systemd"
DEPEND="sys-auth/polkit[introspection]
sys-devel/gettext
dev-libs/glib:2
net-nds/openldap
virtual/krb5
systemd? ( sys-apps/systemd )"
RDEPEND="${DEPEND}"
src_prepare() {
sed -e '/gentoo-release/s/dnl/ /g' -i configure.ac
autotools-utils_src_prepare
}
src_configure() {
PKG_CONFIG=/usr/bin/${CHOST}-pkg-config autotools-utils_src_configure \
$(use_with systemd systemd-journal) \
--with-systemd-unit-dir=$(systemd_get_unitdir) \
--with-distro=defaults \
--disable-doc
}