summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/gwydion-dylan/Manifest7
-rw-r--r--dev-lang/gwydion-dylan/gwydion-dylan-2.4.0.ebuild54
2 files changed, 3 insertions, 58 deletions
diff --git a/dev-lang/gwydion-dylan/Manifest b/dev-lang/gwydion-dylan/Manifest
index 14100656b7b2..57cd53b5a8e6 100644
--- a/dev-lang/gwydion-dylan/Manifest
+++ b/dev-lang/gwydion-dylan/Manifest
@@ -6,13 +6,12 @@ AUX 50gwydion-dylan-gentoo.el 195 RMD160 391da837bd6baaea5c0207d214e8174a9e693ec
AUX gd-gc.patch 1707 RMD160 6809f57437990720dba37e653ca9f5eaceaf1f6f SHA1 f89e31b09de210d4fe647e725e1e66761433bf60 SHA256 30a08139be4819f5b17edb2481a8518afd24288b52cecf3034e6df22b10d1a34
DIST gwydion-dylan-2.4.0.tar.gz 3623651 RMD160 2bd5218e1dd36182489e1854c92ae6baf5690974 SHA1 6fea71a876013fff94a37f8a84fdc5d8245e8c9f SHA256 506fe7baef961f87563764e0ad6a3a31b0db9ad40cc822acd59ec9097d139cfd
EBUILD gwydion-dylan-2.4.0-r1.ebuild 1388 RMD160 279acaeef8ae92f7978f41061cc5cfbbc6c68cf7 SHA1 6d1b6907ef1178cee578a5107cb0399819a8e6fe SHA256 5f8b345ad9f337d601d7a2b51e443198e884629804434d84f02367f0fbf7d71d
-EBUILD gwydion-dylan-2.4.0.ebuild 1273 RMD160 69df80e14216a5d17e29ab0f1dd4654ce2bd5fe5 SHA1 614493f9ef35f80774a51bfbe5f7167d3a9b0c21 SHA256 2f0650d1fbb78854b42a1c7f87e2d4ff9e286712659dcf162bfff511d3f2289e
MISC ChangeLog 958 RMD160 60bfa6d84bbfa9406d19f1124a21995551fbec23 SHA1 6727e334581e7a37c3fa71462e8aa568fe01ce33 SHA256 c207becc04b5006c851cef463bbab8f4d72167a8e1926eab1000aff51bb1180f
MISC metadata.xml 829 RMD160 4e639404156e2ccb1b248546cd7563791da0e6ae SHA1 861ce3e4453aed73e7ea2de735ae5c95e5411b8e SHA256 ae8a96b01f87e3468a6c77d06b45df7b891d95c2f9529a9b7cd6d4adde562c85
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.7 (GNU/Linux)
-iD8DBQFH1G+EBCmRZan6aegRArt0AKCJINfrbBYBurR5sv9/tSVYsTwkvQCfQbQj
-TsxYr3p0taWWwo1XCTl7n/c=
-=XlR7
+iD8DBQFH1HCdBCmRZan6aegRAnCZAJ0c8qBnC3E8vHr+XiK9PsumItDz/QCfQ9DF
+g+jF84SARitgqqnHtVqmP44=
+=iuAG
-----END PGP SIGNATURE-----
diff --git a/dev-lang/gwydion-dylan/gwydion-dylan-2.4.0.ebuild b/dev-lang/gwydion-dylan/gwydion-dylan-2.4.0.ebuild
deleted file mode 100644
index 43b9ad4aa99f..000000000000
--- a/dev-lang/gwydion-dylan/gwydion-dylan-2.4.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/gwydion-dylan/gwydion-dylan-2.4.0.ebuild,v 1.3 2007/07/05 23:52:47 ulm Exp $
-
-inherit elisp-common
-
-DESCRIPTION="The Dylan Programming Language Compiler"
-HOMEPAGE="http://www.gwydiondylan.org/"
-SRC_URI="http://www.gwydiondylan.org/downloads/src/tar/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="gtk emacs"
-
-DEPEND="( || ( dev-lang/gwydion-dylan-bin
- dev-lang/gwydion-dylan ) )
- >=dev-libs/boehm-gc-6.4
- emacs? ( virtual/emacs )
- gtk? ( =x11-libs/gtk+-1.2* )"
-RDEPEND=""
-
-SITEFILE=50gwydion-dylan-gentoo.el
-
-src_compile() {
- ./configure \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- $(use_with gtk) \
- || die "./configure failed"
- emake -j1 || die "emake failed"
- if use emacs; then
- elisp-compile ${S}/tools/elisp/*.el
- fi
-}
-
-src_install() {
- make DESTDIR=${D} install \
- || die "make failed"
- if use emacs; then
- elisp-install ${PN} ${S}/tools/elisp/*.el ${S}/tools/elisp/*.elc
- elisp-site-file-install ${FILESDIR}/${SITEFILE}
- fi
- doenvd ${FILESDIR}/20gwydion-dylan
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}