mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sci-libs/starparse: Remove
Bug: https://bugs.gentoo.org/693290 Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST starparse-1.0.tar.bz2 5466370 BLAKE2B 8445baf5594a90e22e6b91a1795981568f637febce4dc0a714fb67d55e6047e74d005c8ecb7a86195f506cabe1d09ea8a9f8638ff97e010b001e63f8e9f76d17 SHA512 47e862258281a3faa506d4eb573a2819a9f5b1cb16828c4951d5d23bbfa8877d9b737ca0b33136dcf8ae0e96ecc9d310ba65a5b7cf1fe18ab8beb092f2342e9a
|
||||
@@ -1,60 +0,0 @@
|
||||
--- src/guile-binding.c
|
||||
+++ src/guile-binding.c
|
||||
@@ -61,10 +61,10 @@
|
||||
char* filter_string = NULL;
|
||||
char* fname = "-";
|
||||
|
||||
- if (SCM_NFALSEP(filter_string_scm))
|
||||
+ if (scm_is_true(filter_string_scm))
|
||||
filter_string = scm_to_locale_string(filter_string_scm);
|
||||
|
||||
- if (SCM_NFALSEP(fname_scm))
|
||||
+ if (scm_is_true(fname_scm))
|
||||
fname = scm_to_locale_string(fname_scm);
|
||||
|
||||
ship_item_cb = ship_item_scm;
|
||||
--- src/Makefile.am
|
||||
+++ src/Makefile.am
|
||||
@@ -6,13 +6,10 @@
|
||||
libstarparse_la_SOURCES =\
|
||||
parser.y lexer.l starparse.h
|
||||
|
||||
-libstarparse_la_CFLAGS =
|
||||
-libstarparse_la_LDFLAGS =
|
||||
-
|
||||
if ENABLE_GUILE
|
||||
libstarparse_la_SOURCES += guile-binding.c guile-compat.h
|
||||
-libstarparse_la_CFLAGS += @GUILE_CFLAGS@
|
||||
-libstarparse_la_LDFLAGS += @GUILE_LDFLAGS@ -lpthread
|
||||
+libstarparse_la_CFLAGS = @GUILE_CFLAGS@
|
||||
+libstarparse_la_LIBADD = @GUILE_LIBS@ -lpthread
|
||||
endif
|
||||
|
||||
|
||||
--- configure.ac
|
||||
+++ configure.ac
|
||||
@@ -10,18 +10,13 @@
|
||||
|
||||
AM_INIT_AUTOMAKE
|
||||
|
||||
-AC_ARG_ENABLE(guile,
|
||||
+AC_ARG_ENABLE([guile],
|
||||
AS_HELP_STRING([--enable-guile],
|
||||
- [build bindings for guile scheme interpreter]),
|
||||
- USE_GUILE=$enable_guile,
|
||||
- USE_GUILE=yes) # default value
|
||||
-
|
||||
-if test "x$USE_GUILE" = "xyes";
|
||||
-then
|
||||
- GUILE_FLAGS
|
||||
-fi
|
||||
-
|
||||
-AM_CONDITIONAL(ENABLE_GUILE, test "x$USE_GUILE" = "xyes")
|
||||
+ [build bindings for guile scheme interpreter]))
|
||||
+AS_IF([test "x$enable_guile" = "xyes"], [
|
||||
+ PKG_CHECK_MODULES([GUILE], [guile-1.8])
|
||||
+])
|
||||
+AM_CONDITIONAL(ENABLE_GUILE, test "x$enable_guile" = "xyes")
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
starparse-env
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>sci-chemistry@gentoo.org</email>
|
||||
<name>Gentoo Chemistry Project</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="sourceforge">starparse</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,32 +0,0 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
AUTOTOOLS_AUTORECONF=yes
|
||||
|
||||
inherit autotools-utils
|
||||
|
||||
DESCRIPTION="Library for parsing NMR star files (peak-list format) and CIF files"
|
||||
HOMEPAGE="http://burrow-owl.sourceforge.net/"
|
||||
#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
||||
# Created from rev 19 @ http://oregonstate.edu/~benisong/software/projects/starparse/releases/1.0
|
||||
SRC_URI="http://dev.gentooexperimental.org/~jlec/distfiles/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="guile static-libs test"
|
||||
|
||||
REQUIRED_USE="test? ( guile )"
|
||||
|
||||
RDEPEND="guile? ( dev-scheme/guile:12 )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
PATCHES=( "${FILESDIR}"/${P}-guile1.8.patch )
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=( $(use_enable guile) )
|
||||
autotools-utils_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user