diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-05-18 11:00:59 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-05-18 11:02:26 +0200 |
commit | 4021f9cbac4b57df9815fddec070969fb85d4043 (patch) | |
tree | 5b8244e17fdfbd11035f0bc476099dec06cdf246 /dev-cpp/rudiments/rudiments-0.51.ebuild | |
parent | dev-libs/quantlib: Remove last-rited pkg (diff) | |
download | gentoo-4021f9cbac4b57df9815fddec070969fb85d4043.tar.gz gentoo-4021f9cbac4b57df9815fddec070969fb85d4043.tar.bz2 gentoo-4021f9cbac4b57df9815fddec070969fb85d4043.zip |
dev-cpp/rudiments: Remove last-rited pkg
Closes: https://bugs.gentoo.org/652632
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-cpp/rudiments/rudiments-0.51.ebuild')
-rw-r--r-- | dev-cpp/rudiments/rudiments-0.51.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-cpp/rudiments/rudiments-0.51.ebuild b/dev-cpp/rudiments/rudiments-0.51.ebuild deleted file mode 100644 index 71813b690f57..000000000000 --- a/dev-cpp/rudiments/rudiments-0.51.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -AUTOTOOLS_AUTORECONF=1 -AUTOTOOLS_IN_SOURCE_BUILD=1 -inherit autotools-utils - -DESCRIPTION="C++ class library for daemons, clients and servers" -HOMEPAGE="http://rudiments.sourceforge.net/" -SRC_URI="mirror://sourceforge/rudiments/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug pcre ssl static-libs" - -DEPEND="pcre? ( dev-libs/libpcre ) - ssl? ( dev-libs/openssl:0 )" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" ) - -src_prepare() { - mv configure.in configure.ac || die - - # bug #535936 - rm aclocal.m4 || die - - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - --docdir="/usr/share/doc/${PF}/html" \ - $(use debug && "--enable-debug") \ - $(use_enable pcre) \ - $(use_enable ssl) - ) - autotools-utils_src_configure -} |