diff options
-rw-r--r-- | games-util/loki_setupdb/ChangeLog | 11 | ||||
-rw-r--r-- | games-util/loki_setupdb/files/digest-loki_setupdb-20040916 | 1 | ||||
-rw-r--r-- | games-util/loki_setupdb/loki_setupdb-20040916.ebuild | 41 | ||||
-rw-r--r-- | games-util/loki_setupdb/metadata.xml | 9 |
4 files changed, 62 insertions, 0 deletions
diff --git a/games-util/loki_setupdb/ChangeLog b/games-util/loki_setupdb/ChangeLog new file mode 100644 index 000000000000..7bd35d579b5a --- /dev/null +++ b/games-util/loki_setupdb/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for games-util/loki_setupdb +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/loki_setupdb/ChangeLog,v 1.1 2004/09/21 22:17:45 wolf31o2 Exp $ + +*loki_setupdb-20040916 (21 Sep 2004) + + 21 Sep 2004; Chris Gianelloni <wolf31o2@gentoo.org> +metadata.xml, + +loki_setupdb-20040916.ebuild: + Initial import. Ebuild submitted by Alex Linke <incubation.11@freenet.de> to + bug #63648. Closing bug #63648. + diff --git a/games-util/loki_setupdb/files/digest-loki_setupdb-20040916 b/games-util/loki_setupdb/files/digest-loki_setupdb-20040916 new file mode 100644 index 000000000000..871c7ba27232 --- /dev/null +++ b/games-util/loki_setupdb/files/digest-loki_setupdb-20040916 @@ -0,0 +1 @@ +MD5 240a66271f1daef9df0456df323e75f4 loki_setupdb-20040916.tar.bz2 58988 diff --git a/games-util/loki_setupdb/loki_setupdb-20040916.ebuild b/games-util/loki_setupdb/loki_setupdb-20040916.ebuild new file mode 100644 index 000000000000..622fdb2acd4d --- /dev/null +++ b/games-util/loki_setupdb/loki_setupdb-20040916.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/loki_setupdb/loki_setupdb-20040916.ebuild,v 1.1 2004/09/21 22:17:45 wolf31o2 Exp $ + +inherit eutils + +DESCRIPTION="Loki Software product registry database" +HOMEPAGE="http://icculus.org/loki_setup" +SRC_URI="http://dev.gentoo.org/~wolf31o2/sources/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 amd64" +RESTRICT="" +IUSE="" + +DEPEND="dev-libs/libxml" + +src_compile() { + ./autogen.sh || "autogen.sh failed" + econf || die "econf failed" + emake all setupdb || die "emake failed" +} + +src_install() { + # the following dir-structure is needed to make sure that + # loki_setupdb is recognized by loki_patch + SETUPDB_DIR=usr/share/loki_setupdb/ + dodir ${SETUPDB_DIR}/include + insinto ${SETUPDB_DIR}/include + doins *.h || die "doins failed." + dodir ${SETUPDB_DIR}/${ARCH} + insinto ${SETUPDB_DIR}/${ARCH} + doins ${ARCH}/{libsetupdb.a,arch.o,md5.o,setupdb.o} \ + || die "doins failed." + + dodir /usr/bin + exeinto /usr/bin + doexe setupdb || die "doexe failed." + dodoc CHANGES README || die "dodoc failed." +} diff --git a/games-util/loki_setupdb/metadata.xml b/games-util/loki_setupdb/metadata.xml new file mode 100644 index 000000000000..fe08918e6837 --- /dev/null +++ b/games-util/loki_setupdb/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +<maintainer> + <email>wolf31o2@gentoo.org</email> + <name>Chris Gianelloni</name> +</maintainer> +</pkgmetadata> |