summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Walker <ka0ttic@gentoo.org>2004-12-20 11:35:37 +0000
committerAaron Walker <ka0ttic@gentoo.org>2004-12-20 11:35:37 +0000
commit287c2b495e318dccac1c6268dcce0dcd4da45c49 (patch)
tree4c36e1e5abf7be4044e8159fe4885431d9502185 /dev-libs/libdaemon/libdaemon-0.2.ebuild
parentFix digest. (diff)
downloadhistorical-287c2b495e318dccac1c6268dcce0dcd4da45c49.tar.gz
historical-287c2b495e318dccac1c6268dcce0dcd4da45c49.tar.bz2
historical-287c2b495e318dccac1c6268dcce0dcd4da45c49.zip
Version bump. tidy'd ebuild, marked 0.5 stable on x86, removed old 0.2 ebuild, and updated metadata.xml
Diffstat (limited to 'dev-libs/libdaemon/libdaemon-0.2.ebuild')
-rw-r--r--dev-libs/libdaemon/libdaemon-0.2.ebuild33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-libs/libdaemon/libdaemon-0.2.ebuild b/dev-libs/libdaemon/libdaemon-0.2.ebuild
deleted file mode 100644
index 9da6bec9cf01..000000000000
--- a/dev-libs/libdaemon/libdaemon-0.2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdaemon/libdaemon-0.2.ebuild,v 1.5 2004/07/14 14:32:59 agriffis Exp $
-
-DESCRIPTION="Simple library for creating daemon processes in C"
-HOMEPAGE="http://0pointer.de/lennart/projects/libdaemon/"
-SRC_URI="${HOMEPAGE}/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE="doc"
-DEPEND="doc? ( app-doc/doxygen net-www/lynx )"
-
-src_compile() {
- local myconf
-
- use doc \
- && myconf="${myconf} --enable-doxygen --enable-lynx" \
- || myconf="${myconf} --disable-doxygen --disable-lynx"
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- einstall || die
-
- if use doc; then
- ln -sf doc/reference/html reference
- dohtml -r doc/README.html reference
- doman doc/reference/man/man*/*
- fi
-}