summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2007-04-09 11:36:15 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2007-04-09 11:36:15 +0000
commita32ff187bf94f4f7ac909c75d3e0c7af2937f425 (patch)
tree5bb3fc6ef9a628c388a2be0a5147c4e28311c64b /dev-db/xindice
parentThe ebuild currently always installs docs so remove doc from IUSE and depend ... (diff)
downloadgentoo-2-a32ff187bf94f4f7ac909c75d3e0c7af2937f425.tar.gz
gentoo-2-a32ff187bf94f4f7ac909c75d3e0c7af2937f425.tar.bz2
gentoo-2-a32ff187bf94f4f7ac909c75d3e0c7af2937f425.zip
Remove old version.
(Portage version: 2.1.2.3)
Diffstat (limited to 'dev-db/xindice')
-rw-r--r--dev-db/xindice/ChangeLog5
-rw-r--r--dev-db/xindice/files/digest-xindice-1.0-r33
-rw-r--r--dev-db/xindice/xindice-1.0-r3.ebuild60
3 files changed, 4 insertions, 64 deletions
diff --git a/dev-db/xindice/ChangeLog b/dev-db/xindice/ChangeLog
index 7f5224bf4c16..5072eb8ff4ac 100644
--- a/dev-db/xindice/ChangeLog
+++ b/dev-db/xindice/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/xindice
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/xindice/ChangeLog,v 1.14 2007/04/09 11:35:09 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/xindice/ChangeLog,v 1.15 2007/04/09 11:36:15 betelgeuse Exp $
+
+ 09 Apr 2007; Petteri Räty <betelgeuse@gentoo.org> -xindice-1.0-r3.ebuild:
+ Remove old version.
09 Apr 2007; Petteri Räty <betelgeuse@gentoo.org> xindice-1.0-r4.ebuild:
The ebuild currently always installs docs so remove doc from IUSE and depend
diff --git a/dev-db/xindice/files/digest-xindice-1.0-r3 b/dev-db/xindice/files/digest-xindice-1.0-r3
deleted file mode 100644
index ff289e6dede3..000000000000
--- a/dev-db/xindice/files/digest-xindice-1.0-r3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 895bf529f483be5885cf4c963b4111a8 xml-xindice-1.0.tar.gz 5304315
-RMD160 1253aa693340cd3c7d5210050adb53cf842069f3 xml-xindice-1.0.tar.gz 5304315
-SHA256 d81c418dacc86d5cfa66c422e12a2438280b784150d99152e7bd287ab3403cb1 xml-xindice-1.0.tar.gz 5304315
diff --git a/dev-db/xindice/xindice-1.0-r3.ebuild b/dev-db/xindice/xindice-1.0-r3.ebuild
deleted file mode 100644
index 8c2df34fc333..000000000000
--- a/dev-db/xindice/xindice-1.0-r3.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/xindice/xindice-1.0-r3.ebuild,v 1.5 2006/07/01 18:46:15 nichoj Exp $
-
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="A native java XML database"
-HOMEPAGE="http://xml.apache.org/xindice"
-SRC_URI="http://xml.apache.org/xindice/dist/xml-${P}.tar.gz"
-
-LICENSE="Apache-1.1"
-SLOT="0"
-KEYWORDS="~x86 ~ppc"
-IUSE="doc"
-
-DEPEND=">=virtual/jdk-1.3
- dev-java/ant"
-
-S="${WORKDIR}/xml-${P}"
-
-pkg_preinst() {
- enewgroup xindice || die "Adding group xindice failed"
- enewuser xindice -1 /bin/sh /var/run/xindice xindice || die "Adding user xindice failed"
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-r3.patch
-}
-
-src_compile() {
- export XINDICE_HOME=${S}
- eant main $(use_doc docs)
-}
-
-src_install() {
- export TARGET=/opt/${PN}
- keepdir /var/run/${PN}
- chown ${PN}:${PN} ${D}/var/run/${PN}
- dodir ${TARGET}
- dodir ${TARGET}/java
- cp -pPR bin config icons docs logs idl ${D}${TARGET}
- cd java
- cp -pPR lib tests examples ${D}${TARGET}/java
- cd ..
- dodoc docs/LICENSE docs/README docs/FAQ docs/TODO docs/VERSIONS docs/AUTHORS
- dohtml docs/AdministratorsGuide.html docs/DevelopersGuide.html docs/UsersGuide.html docs/ToolsReference.html docs/feather.gif docs/index.html docs/xindice.jpg
- dodir /etc/env.d
- insinto /etc/env.d
- doins ${FILESDIR}/21${PN}
- dodir /etc/init.d
- insinto /etc/init.d
- insopts -m0755
- newins ${FILESDIR}/${PN}-r2 ${PN}
- insinto ${TARGET}
- doins start
- keepdir /opt/${PN}/db
- chown -R xindice:xindice ${D}/opt/xindice
-}