diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-12 03:45:23 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-12 03:45:23 +0000 |
commit | 5841d8ae92e08f393bd4f97e9c4817630651db56 (patch) | |
tree | 640ecc86a28a0423e410102c2f180eefbf0dcdc1 /games-util | |
parent | Added documentation to eggdrop-installer about how to create the user file an... (diff) | |
download | gentoo-2-5841d8ae92e08f393bd4f97e9c4817630651db56.tar.gz gentoo-2-5841d8ae92e08f393bd4f97e9c4817630651db56.tar.bz2 gentoo-2-5841d8ae92e08f393bd4f97e9c4817630651db56.zip |
initial commit - ebuild based on the one provided by Adrian Fruehwirth via bug #62815
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/agistudio/ChangeLog | 11 | ||||
-rw-r--r-- | games-util/agistudio/Manifest | 2 | ||||
-rw-r--r-- | games-util/agistudio/agistudio-1.2.1.ebuild | 40 | ||||
-rw-r--r-- | games-util/agistudio/files/digest-agistudio-1.2.1 | 1 | ||||
-rw-r--r-- | games-util/agistudio/metadata.xml | 5 |
5 files changed, 59 insertions, 0 deletions
diff --git a/games-util/agistudio/ChangeLog b/games-util/agistudio/ChangeLog new file mode 100644 index 000000000000..5b3b4ffef56d --- /dev/null +++ b/games-util/agistudio/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for games-util/agistudio +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/agistudio/ChangeLog,v 1.1 2004/09/12 03:45:23 mr_bones_ Exp $ + +*agistudio-1.2.1 (11 Sep 2004) + + 11 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> +metadata.xml, + +agistudio-1.2.1.ebuild: + initial commit - ebuild based on the one provided by Adrian Fruehwirth via bug + #62815 + diff --git a/games-util/agistudio/Manifest b/games-util/agistudio/Manifest new file mode 100644 index 000000000000..542bd968ce03 --- /dev/null +++ b/games-util/agistudio/Manifest @@ -0,0 +1,2 @@ +MD5 af449db266a454e6461af669654f5743 agistudio-1.2.1.ebuild 806 +MD5 1c8785ab600cd3bf9914f946bd7ea591 files/digest-agistudio-1.2.1 67 diff --git a/games-util/agistudio/agistudio-1.2.1.ebuild b/games-util/agistudio/agistudio-1.2.1.ebuild new file mode 100644 index 000000000000..4311fe489ed0 --- /dev/null +++ b/games-util/agistudio/agistudio-1.2.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/agistudio/agistudio-1.2.1.ebuild,v 1.1 2004/09/12 03:45:23 mr_bones_ Exp $ + +inherit kde +need-qt 3.1 + +DESCRIPTION="QT AGI Studio allows you to view, create and edit AGI games." +HOMEPAGE="http://agistudio.sourceforge.net/" +SRC_URI="mirror://sourceforge/agistudio/${P}.tar.gz" + +LICENSE="GPL-1" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +S="${WORKDIR}/${P}/src" + +src_unpack() { + unpack "${A}" + cd "${S}" + sed -i \ + -e "s#^QTDIR.*#QTDIR = ${QTDIR}#" \ + -e "s#^INCPATH.*#INCPATH = -I\$(QTDIR)/include#" \ + Makefile \ + || die "sed failed" +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + dobin agistudio || die "dobin failed" + cd .. + dodir /usr/share/${PN} + cp -r help template "${D}/usr/share/${PN}" || die "cp failed" + doman agistudio.1 + dodoc README +} diff --git a/games-util/agistudio/files/digest-agistudio-1.2.1 b/games-util/agistudio/files/digest-agistudio-1.2.1 new file mode 100644 index 000000000000..c6fecaed8042 --- /dev/null +++ b/games-util/agistudio/files/digest-agistudio-1.2.1 @@ -0,0 +1 @@ +MD5 e658dbb3cebcdb0e21fa6689677408f1 agistudio-1.2.1.tar.gz 368717 diff --git a/games-util/agistudio/metadata.xml b/games-util/agistudio/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-util/agistudio/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +</pkgmetadata> |