diff options
author | Christoph Mende <angelos@gentoo.org> | 2008-02-02 20:14:27 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2008-02-02 20:14:27 +0000 |
commit | 9feaad5df67c3fd32feb8745040c67c23a9b097a (patch) | |
tree | 88917ce8ec20e5f750ea3ec943e9e3a00711cc8a /dev-libs/argtable | |
parent | Fix building with USE=doc so it doesn't try to run tests anymore. Bug #208351. (diff) | |
download | gentoo-2-9feaad5df67c3fd32feb8745040c67c23a9b097a.tar.gz gentoo-2-9feaad5df67c3fd32feb8745040c67c23a9b097a.tar.bz2 gentoo-2-9feaad5df67c3fd32feb8745040c67c23a9b097a.zip |
Remove old
(Portage version: 2.1.4)
Diffstat (limited to 'dev-libs/argtable')
-rw-r--r-- | dev-libs/argtable/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/argtable/argtable-2.4.ebuild | 45 | ||||
-rw-r--r-- | dev-libs/argtable/files/argtable-2.4-fix-makefile.diff | 48 |
3 files changed, 5 insertions, 94 deletions
diff --git a/dev-libs/argtable/ChangeLog b/dev-libs/argtable/ChangeLog index de78396e0052..5be127ea2d55 100644 --- a/dev-libs/argtable/ChangeLog +++ b/dev-libs/argtable/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/argtable # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/ChangeLog,v 1.14 2008/02/01 17:28:02 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/ChangeLog,v 1.15 2008/02/02 20:14:27 angelos Exp $ + + 02 Feb 2008; Christoph Mende <angelos@gentoo.org> + -files/argtable-2.4-fix-makefile.diff, -argtable-2.4.ebuild: + Remove old 01 Feb 2008; Christian Faulhammer <opfer@gentoo.org> argtable-2.8.ebuild: stable x86, bug 208427 diff --git a/dev-libs/argtable/argtable-2.4.ebuild b/dev-libs/argtable/argtable-2.4.ebuild deleted file mode 100644 index e915635c6968..000000000000 --- a/dev-libs/argtable/argtable-2.4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/argtable-2.4.ebuild,v 1.7 2007/08/01 22:21:15 angelos Exp $ - -inherit eutils - -DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with minimal fuss" -HOMEPAGE="http://argtable.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc debug" - -RDEPEND="virtual/libc" - -S="${WORKDIR}/argtable2" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}-fix-makefile.diff -} - -src_compile() { - econf $(use_enable debug) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - - dodoc history.txt readme.txt - - if use doc ; then - cd ${S}/doc - dohtml *.html *.gif - dodoc *.pdf *.ps - - cd ${S}/example - docinto examples - dodoc Makefile *.[ch] README.txt - fi -} diff --git a/dev-libs/argtable/files/argtable-2.4-fix-makefile.diff b/dev-libs/argtable/files/argtable-2.4-fix-makefile.diff deleted file mode 100644 index 79d99e5977c4..000000000000 --- a/dev-libs/argtable/files/argtable-2.4-fix-makefile.diff +++ /dev/null @@ -1,48 +0,0 @@ ---- argtable2.orig/Makefile.in 2005-02-01 08:54:09.211698973 -0500 -+++ argtable2/Makefile.in 2005-02-01 09:40:35.358574264 -0500 -@@ -30,8 +30,6 @@ - libdir ?= @libdir@ - includedir ?= @includedir@ - mandir ?= @mandir@/man3 --docdir ?= $(prefix)/share/doc/argtable2 --exampledir ?= $(prefix)/share/doc/argtable2/example - - - all: -@@ -47,26 +45,16 @@ - cd tests; $(MAKE) installcheck - - install: all -- @INSTALL@ -d $(includedir) -- @INSTALL@ -d $(libdir) -- @INSTALL@ -d $(mandir) -- @INSTALL@ -d $(docdir) -- @INSTALL@ -d $(exampledir) -- @INSTALL@ -m 644 src/argtable2.h $(includedir) -- @INSTALL@ -m 644 src/libargtable2.a $(libdir) -- @INSTALL@ -m 644 src/@LIBDYNAMIC@ $(libdir)/@LIBDYNAMICVERS@ -- @INSTALL@ -m 644 doc/*.html $(docdir) -- @INSTALL@ -m 644 doc/*.gif $(docdir) -- @INSTALL@ -m 644 doc/*.ps $(docdir) -- @INSTALL@ -m 644 doc/*.pdf $(docdir) -- @INSTALL@ -m 644 doc/argtable2.3 $(mandir) -- @INSTALL@ -m 644 example/*.[ch] $(exampledir) -- @INSTALL@ -m 644 example/Makefile $(exampledir) -- @INSTALL@ -m 644 example/README.txt $(exampledir) -- -@STRIP@ -S $(libdir)/libargtable2.a $(libdir)/@LIBDYNAMICVERS@ -- @RM@ -f $(libdir)/@LIBDYNAMIC@ -- cd $(libdir) ; @LN@ -fs @LIBDYNAMICVERS@ @LIBDYNAMIC@ -- cd $(mandir) ; @LN@ -fs argtable2.3 argtable.3 -+ @INSTALL@ -d $(DESTDIR)$(includedir) -+ @INSTALL@ -d $(DESTDIR)$(libdir) -+ @INSTALL@ -d $(DESTDIR)$(mandir) -+ @INSTALL@ -m 644 src/argtable2.h $(DESTDIR)$(includedir) -+ @INSTALL@ -m 644 src/libargtable2.a $(DESTDIR)$(libdir) -+ @INSTALL@ -m 644 src/@LIBDYNAMIC@ $(DESTDIR)$(libdir)/@LIBDYNAMICVERS@ -+ @INSTALL@ -m 644 doc/argtable2.3 $(DESTDIR)$(mandir) -+ @RM@ -f $(DESTDIR)$(libdir)/@LIBDYNAMIC@ -+ cd $(DESTDIR)$(libdir) ; @LN@ -fs @LIBDYNAMICVERS@ @LIBDYNAMIC@ -+ cd $(DESTDIR)$(mandir) ; @LN@ -fs argtable2.3 argtable.3 - - uninstall: - @RM@ -f $(includedir)/argtable2.h |