Package Details: apachedirectorystudio 2.0.0.v20210717.17-2

Git Clone URL: https://aur.archlinux.org/apachedirectorystudio.git (read-only, click to copy)
Package Base: apachedirectorystudio
Description: Eclipse based LDAP browser and directory client
Upstream URL: https://directory.apache.org/studio/
Keywords: LDAP openldap
Licenses: Apache
Submitter: None
Maintainer: SanskritFritz
Last Packager: SanskritFritz
Votes: 87
Popularity: 0.117668
First Submitted: 2009-02-13 21:06 (UTC)
Last Updated: 2024-01-28 19:15 (UTC)

Dependencies (3)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9 10 Next › Last »

juantascon commented on 2013-03-28 14:56 (UTC)

I don't use the .desktop file nor think that a server application should have one

lordchaos commented on 2013-03-28 13:40 (UTC)

So why not include a desktop file in the PKGBUILD?

captainju commented on 2013-02-22 09:42 (UTC)

can't install it, because ApacheDirectoryStudio.desktop is missing

clamy commented on 2013-02-20 13:48 (UTC)

The PKGBUILD is in the file http://www.be-root.com/downloads/apachedirectorystudio2/apachedirectorystudio2.tar.gz ( with the .desktop file for the menu link and the .png icon). Content of the PKGBUILD is : # Maintainer: Juan Diego Tascon # Contributor: Tom Wizetek <tom@wizetek.com> # Contributor: Ian Taylor <ian at lorf dot orgs> pkgname=apachedirectorystudio2 _pkgname=ApacheDirectoryStudio pkgver=2.0.0.v20130131 pkgrel=2 pkgdesc="Eclipse based LDAP browser and directory client v2.0" arch=('i686' 'x86_64') url="http://directory.apache.org/studio/" license=('Apache') depends=('java-runtime' 'gtk2') provides=('apachedirectorystudio') conflicts=('apachedirectorystudio') [[ ${CARCH} = i686 ]] && _arch=x86 && md5sums=('accb9bb84de7f7cb4632ddc700577770') [[ ${CARCH} = x86_64 ]] && _arch=x86_64 && md5sums=('d50c4c201bd905980b9208d72ff006d4') source=("http://www.apache.org/dist/directory/studio/dist/${pkgver}/${_pkgname}-linux-${_arch}-${pkgver}.tar.gz") package() { install -d -m 0755 ${pkgdir}/opt/${_pkgname} cp -a ${srcdir}/${_pkgname}-linux-${_arch}-${pkgver}/* ${pkgdir}/opt/${_pkgname} install -d -m 0755 ${pkgdir}/usr/bin ln -sf /opt/${_pkgname}/${_pkgname} ${pkgdir}/usr/bin/${_pkgname} ln -sf /opt/${_pkgname}/${_pkgname} ${pkgdir}/usr/bin/${pkgname} install -d -m 0755 ${pkgdir}/usr/share/applications cp -a ${startdir}/${_pkgname}.desktop ${pkgdir}/usr/share/applications/ cp -a ${startdir}/${_pkgname}.png ${pkgdir}/opt/${_pkgname} }

juantascon commented on 2013-02-20 13:04 (UTC)

you mind sharing the PKGBUILD?

clamy commented on 2013-02-20 10:32 (UTC)

Hi I made some minor changes with this package : - Use the version 2.0.0v20130131 of ADS - Install an menu icon The package is downloadable here : http://www.be-root.com/downloads/apachedirectorystudio2/apachedirectorystudio2.tar.gz

xopher_mc commented on 2013-01-11 10:48 (UTC)

Please change PKGBUILD line 16 to source=("http://www.apache.org/dist/directory/studio/dist/${pkgver}/${_pkgname}-linux-${_arch}-${pkgver}.tar.gz") thanks

wizetek commented on 2012-01-22 00:41 (UTC)

Before you flag this package out-of-date, please check http://projects.apache.org/projects/directory_studio.html http://directory.apache.org/studio/download/download-linux.html Currently, 1.5.3 is the latest stable release. 2.0 M1 is the latest milestone.

wizetek commented on 2011-09-05 17:16 (UTC)

You're right, gauthma. Good catch. Thanks for letting me know. Fixed in pkgrel 5.

gauthma commented on 2011-09-05 16:48 (UTC)

In the PKGBUILD these lines are wrong: ln -sf ${pkgdir}/opt/${_pkgname}/${_pkgname} ${pkgdir}/usr/bin/${_pkgname} ln -sf ${pkgdir}/opt/${_pkgname}/${_pkgname} ${pkgdir}/usr/bin/${pkgname} The symlinks created in /usr/bin/ end up pointing to the /tmp directory where the xz was extracted. I *think* the correct lines are: ln -sf /opt/${_pkgname}/${_pkgname} ${pkgdir}/usr/bin/${_pkgname} ln -sf /opt/${_pkgname}/${_pkgname} ${pkgdir}/usr/bin/${pkgname} Feel free to correct me.