diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-nds/lat | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-nds/lat')
-rw-r--r-- | net-nds/lat/Manifest | 1 | ||||
-rw-r--r-- | net-nds/lat/lat-1.2.3.ebuild | 60 | ||||
-rw-r--r-- | net-nds/lat/metadata.xml | 13 |
3 files changed, 74 insertions, 0 deletions
diff --git a/net-nds/lat/Manifest b/net-nds/lat/Manifest new file mode 100644 index 000000000000..4375794f515e --- /dev/null +++ b/net-nds/lat/Manifest @@ -0,0 +1 @@ +DIST lat-1.2.3.tar.gz 463225 SHA256 8071bcacb3f5be5b10f7a154cf64f007670b67415f986e0794202643ab52e16e SHA512 48962a47d4cd7ec19662e9cf3fc9a3a0bdc368d9b8ff2916988d28fb7f3c53a0e016344cc7748e85da196dc7304f91a68a11d7da9758f5c5253cbf71bb9ffb25 WHIRLPOOL 22954d6d065a69e4f8a36b04dcb68a83ade75a4523da426f583208fa31f540242aa4602f46d536ba66b8ed3d375cb07f69c06ef9cbdaf74e39e5215e9fbf44af diff --git a/net-nds/lat/lat-1.2.3.ebuild b/net-nds/lat/lat-1.2.3.ebuild new file mode 100644 index 000000000000..dab1e151f896 --- /dev/null +++ b/net-nds/lat/lat-1.2.3.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 +GCONF_DEBUG=no + +inherit gnome2 mono versionator + +KEYWORDS="amd64 x86" + +DESCRIPTION="LDAP Administration Tool, allows you to browse LDAP-based directories and add/edit/delete entries" +HOMEPAGE="http://sourceforge.net/projects/ldap-at/" +SRC_URI="mirror://sourceforge/ldap-at/${P}.tar.gz" +LICENSE="GPL-2" +IUSE="avahi" +SLOT="0" + +RDEPEND=" + >=dev-lang/mono-1.1.13 + >=dev-dotnet/gtk-sharp-2.8 + >=dev-dotnet/gnome-sharp-2.8 + >=dev-dotnet/glade-sharp-2.8 + >=dev-dotnet/gconf-sharp-2.8 + gnome-base/libgnome-keyring + sys-apps/dbus + avahi? ( net-dns/avahi[mono] ) +" +DEPEND="${RDEPEND} + app-text/scrollkeeper + virtual/pkgconfig" + +src_prepare() { + # Fix tests, bug #295889 + echo lat/plugins/ActiveDirectoryCoreViews/dialogs.glade >> po/POTFILES.in + echo lat/plugins/JpegAttributeViewer/dialog.glade >> po/POTFILES.in + echo lat/plugins/PosixCoreViews/dialogs.glade >> po/POTFILES.in +} + +src_configure() { + econf $(use_enable avahi) +} + +src_compile() { + # bug #330203 + emake -j1 +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README TODO +} + +pkg_postinst() { + gnome2_pkg_postinst + if use avahi ; then + ewarn "You've enabled avahi support." + ewarn "Make sure the avahi daemon is running before you try to start ${PN}" + fi +} diff --git a/net-nds/lat/metadata.xml b/net-nds/lat/metadata.xml new file mode 100644 index 000000000000..d62644004bf9 --- /dev/null +++ b/net-nds/lat/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> + <longdescription> + LAT stands for LDAP Administration Tool. The tool allows you to browse LDAP-based directories and add/edit/delete entries contained within. It can store profiles for quick access to different servers. There are also different views available such as Users, Groups and Hosts which allow you to easily manage objects without having to deal with the intricacies of LDAP. + </longdescription> + <upstream> + <remote-id type="sourceforge">ldap-at</remote-id> + </upstream> +</pkgmetadata> |