diff options
Diffstat (limited to 'net-nds')
-rw-r--r-- | net-nds/lat/ChangeLog | 8 | ||||
-rw-r--r-- | net-nds/lat/files/digest-lat-1.2.1.1 | 3 | ||||
-rw-r--r-- | net-nds/lat/lat-1.2.1.1.ebuild | 45 |
3 files changed, 55 insertions, 1 deletions
diff --git a/net-nds/lat/ChangeLog b/net-nds/lat/ChangeLog index 59a92f4c1f88..b0a80720e1ab 100644 --- a/net-nds/lat/ChangeLog +++ b/net-nds/lat/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-nds/lat # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/lat/ChangeLog,v 1.1 2006/10/15 22:52:07 bass Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/lat/ChangeLog,v 1.2 2006/11/21 22:34:50 bass Exp $ + +*lat-1.2.1.1 (21 Nov 2006) + + 21 Nov 2006; J. Alberto Suárez López <bass@gentoo.org> + +lat-1.2.1.1.ebuild: + Bump version and fixed Deps #151953 *lat-1.2.0.1 (15 Oct 2006) diff --git a/net-nds/lat/files/digest-lat-1.2.1.1 b/net-nds/lat/files/digest-lat-1.2.1.1 new file mode 100644 index 000000000000..291723b07b99 --- /dev/null +++ b/net-nds/lat/files/digest-lat-1.2.1.1 @@ -0,0 +1,3 @@ +MD5 aea2b241321bd829f33d69813a842c6b lat-1.2.1.1.tar.gz 434875 +RMD160 e364f98d8539d6fced35948580b6d48d74548987 lat-1.2.1.1.tar.gz 434875 +SHA256 1fd4239f99be3c27a459fecfabe6cc1e86822d21c1f23d9c12f2401b7e0679ec lat-1.2.1.1.tar.gz 434875 diff --git a/net-nds/lat/lat-1.2.1.1.ebuild b/net-nds/lat/lat-1.2.1.1.ebuild new file mode 100644 index 000000000000..a248f808e31f --- /dev/null +++ b/net-nds/lat/lat-1.2.1.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/lat/lat-1.2.1.1.ebuild,v 1.1 2006/11/21 22:34:50 bass Exp $ + +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://dev.mmgsecurity.com/projects/lat" +SRC_URI="http://dev.mmgsecurity.com/downloads/${PN}/$(get_version_component_range 1-2)/${P}.tar.gz" +LICENSE="GPL-2" +IUSE="avahi dbus" +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/gnome-keyring-0.4* + sys-apps/dbus + avahi? ( net-dns/avahi )" +DEPEND="${RDEPEND} + app-text/scrollkeeper + dev-util/pkgconfig" + +src_compile() { + econf \ + $(use_enable avahi) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README TODO +} + +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 +} |