diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-04-29 18:57:11 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-04-29 18:57:11 +0000 |
commit | 826b84a31643c9ab262cf020f194d834c3e742f8 (patch) | |
tree | 8a35e318f989890f7a82f3aeb97460eb4752167d /dev-libs/xmlsec | |
parent | Version bump wrt #317795. (diff) | |
download | gentoo-2-826b84a31643c9ab262cf020f194d834c3e742f8.tar.gz gentoo-2-826b84a31643c9ab262cf020f194d834c3e742f8.tar.bz2 gentoo-2-826b84a31643c9ab262cf020f194d834c3e742f8.zip |
Delete older ebuild.
Diffstat (limited to 'dev-libs/xmlsec')
-rw-r--r-- | dev-libs/xmlsec/xmlsec-1.2.14.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-libs/xmlsec/xmlsec-1.2.14.ebuild b/dev-libs/xmlsec/xmlsec-1.2.14.ebuild deleted file mode 100644 index 6754491f61e8..000000000000 --- a/dev-libs/xmlsec/xmlsec-1.2.14.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xmlsec/xmlsec-1.2.14.ebuild,v 1.1 2009/12/05 22:16:50 arfrever Exp $ - -EAPI="2" - -DESCRIPTION="Command line tool for signing, verifying, encrypting and decrypting XML" -HOMEPAGE="http://www.aleksey.com/xmlsec" -SRC_URI="http://www.aleksey.com/xmlsec/download/${PN}1-${PV}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="gnutls mozilla ssl" - -RDEPEND=">=dev-libs/libxml2-2.7.4 - >=dev-libs/libxslt-1.0.20 - gnutls? ( >=net-libs/gnutls-0.8.1 ) - mozilla? ( >=dev-libs/nspr-4.0 - >=dev-libs/nss-3.2 ) - ssl? ( >=dev-libs/openssl-0.9.7 )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -S="${WORKDIR}/${PN}1-${PV}" - -#src_prepare() { -# eautoreconf -# append-cppflags '-DLTDL_OBJDIR=\".libs\"' '-DLTDL_SHLIB_EXT=\".so\"' -#} - -src_configure() { - local myconf - use gnutls || myconf="--without-gnutls" - econf \ - --enable-pkgconfig \ - --enable-xkms \ - $(use_enable ssl aes) \ - $(use_with ssl openssl /usr) \ - --with-html-dir=/usr/share/doc/${PF} \ - ${myconf} -} - -src_test() { - if has_version ${CATEGORY}/${PN} && ! has_version "=${CATEGORY}/${PF}"; then - ewarn "Tests will be probably skipped. First install ${CATEGORY}/${PF} and next reinstall it again with testing enabled." - fi - - TMPFOLDER="${T}" emake check || die "emake check failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS README NEWS || die "dodoc failed" -} |