Compare commits
4 Commits
d96dc6a671
...
efa6961ce7
Author | SHA1 | Date | |
---|---|---|---|
|
efa6961ce7 | ||
|
986baa759b | ||
|
109eb5d33a | ||
|
e23fcf0c63 |
@ -1,2 +1 @@
|
||||
DIST gerbil-0.16.tar.gz 1715765 BLAKE2B 74cd501b19c8f124f9478c73080e92c2ba0bf92e8cb9faa4cba492b2def8a61633897b67def4200e53962ccf22287f58cf7fdd33604104acc80bde12dd58b07c SHA512 46782b4b71a3b437501b825f2f164e53b285d3a4cdba8f04485edaaa589d8500535c06a47a1464fc537ab7546413dde37c8d6a16a5e076a99ccf255905ed105d
|
||||
DIST gerbil-0.17.tar.gz 1792073 BLAKE2B 1c28f3e44b1618408dba83598e55d136aa800e3482322fbd8761c0c4c851b5358d0a040d88c33be896008af33f5132a32faca8ab1ef28928a9dcdb8ac96bdfbe SHA512 c23d5ead0b23991181c977b9fe5784df5ba9ee46221b44a3f3a194d7669b7fb1268b9bfa310f5cfd1c994036f2fbee2f8611c9bce556f1c235e17babc31ce43d
|
||||
|
@ -1,114 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit elisp-common toolchain-funcs wrapper
|
||||
|
||||
DESCRIPTION="Dialect of Scheme designed for Systems Programming"
|
||||
HOMEPAGE="https://cons.io/ https://github.com/vyzo/gerbil"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/vyzo/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/vyzo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
S="${S}/src"
|
||||
|
||||
LICENSE="Apache-2.0 LGPL-2.1"
|
||||
SLOT="0"
|
||||
IUSE="emacs leveldb lmdb mysql +sqlite +xml yaml +zlib"
|
||||
|
||||
BDEPEND="dev-scheme/gambit"
|
||||
RDEPEND="
|
||||
dev-scheme/gambit
|
||||
emacs? ( >=app-editors/emacs-23.1:* )
|
||||
leveldb? ( dev-libs/leveldb )
|
||||
lmdb? ( dev-db/lmdb )
|
||||
mysql? ( dev-db/mariadb:* )
|
||||
sqlite? ( dev-db/sqlite )
|
||||
xml? ( dev-libs/libxml2 )
|
||||
yaml? ( dev-libs/libyaml )
|
||||
zlib? ( sys-libs/zlib )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
SITEFILE="70${PN}-gentoo.el"
|
||||
|
||||
src_prepare() {
|
||||
# Just to be safe, because './configure --help' says:
|
||||
# "Set default GERBIL_HOME (environment variable still overrides)"
|
||||
unset GERBIL_HOME
|
||||
unset GERBIL_PATH
|
||||
|
||||
# Verbose build process
|
||||
export GAMBCOMP_VERBOSE="yes"
|
||||
|
||||
default
|
||||
|
||||
sed -i "s|gcc|$(tc-getCC)|g" ./build.sh || die "Failed to fix CC setting"
|
||||
sed -i "s|-O2|${CFLAGS}|g" ./build.sh || die "Failed to fix CFLAGS setting"
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf=(
|
||||
$(use_enable leveldb)
|
||||
$(use_enable lmdb)
|
||||
$(use_enable mysql)
|
||||
$(use_enable xml libxml)
|
||||
$(use_enable yaml libyaml)
|
||||
$(usex sqlite '' '--disable-sqlite')
|
||||
$(usex zlib '' '--disable-zlib')
|
||||
--prefix="${D}/usr/share/${PN}"
|
||||
)
|
||||
# This is not a standard 'configure' script!
|
||||
gsi ./configure ${myconf[@]} ||
|
||||
die "Failed to configure using the 'configure' script"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# The 'build.sh' script uses environment variables that are exported
|
||||
# by portage, ie.: CFLAGS, LDFLAGS, ...
|
||||
sh ./build.sh ||
|
||||
die "Failed to compile using the 'build.sh' script"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
mkdir -p "${D}"/usr/share/${PN} ||
|
||||
die "Failed to make ${D}/usr/share/${PN} directory"
|
||||
gsi ./install || die "Failed to install using the 'install' script"
|
||||
|
||||
sed -i "s|${D}|${EPREFIX}|g" "${D}"/usr/share/${PN}/bin/gxc ||
|
||||
die "Failed to fix the 'gxc' executable script"
|
||||
|
||||
mv "${D}"/usr/share/${PN}/share/emacs "${D}"/usr/share/emacs || die
|
||||
mv "${D}"/usr/share/${PN}/share/${PN}/TAGS "${D}"/usr/share/${PN}/TAGS || die
|
||||
|
||||
# Compile the 'gerbil-mode.el'
|
||||
if use emacs; then
|
||||
elisp-compile "${D}/usr/share/emacs/site-lisp/gerbil"/*.el ||
|
||||
die "Failed to compile elisp files"
|
||||
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
|
||||
fi
|
||||
|
||||
# Create wrappers for gerbil executables in GERBIL_HOME (/usr/share/gerbil)
|
||||
pushd "${D}"/usr/share/${PN}/bin >/dev/null || die
|
||||
local gx_bin
|
||||
for gx_bin in *; do
|
||||
make_wrapper "${gx_bin}" "${EPREFIX}/usr/share/${PN}/bin/${gx_bin}"
|
||||
done
|
||||
popd >/dev/null || die
|
||||
|
||||
# Without this the programs compiled with gxc will break!
|
||||
doenvd "${FILESDIR}/99${PN}"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
use emacs && elisp-site-regen
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
use emacs && elisp-site-regen
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
DIST joypixels-6.0.0.ttf 23212776 BLAKE2B 821cf60f4b80fff02f4cf7f0b8023df8e927365c8d6e03f1ef404b5cf9c23e35682b8b9185a8ed22de58efde22e97f7103de8ccee74c3114215b77dd32e94098 SHA512 27e961280558c37b31fe9b2c0909e031244d74aecc1a028f845cf209890d7376f73b1524142f613d447a313e42ba46bce1c0c978e012ce86394d9007843d36ec
|
||||
DIST joypixels-6.5.0.ttf 25348564 BLAKE2B 4e38a3bb04f71292ba9003b52d050c04afe96eac5b99073560a6e39c781ad895102812093f4aa3b64670ff2907060e8ca1cfebbf00a22abc68315a1691713cc5 SHA512 abe44c631e5b1e7f7a2c59ae979beb381bbf10c04a157f67ca022cff5ee4c5162e3108b34fe55d4165f4b5e062755387f421363fa8ca8d600d5a005a534b0f4f
|
@ -1,27 +0,0 @@
|
||||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit font
|
||||
|
||||
DESCRIPTION="Emoji as a Service (formerly EmojiOne)"
|
||||
HOMEPAGE="https://www.joypixels.com"
|
||||
SRC_URI="https://cdn.joypixels.com/arch-linux/font/${PV}/joypixels-android.ttf -> ${P}.ttf"
|
||||
|
||||
LICENSE="JoyPixels"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
|
||||
FONT_SUFFIX="ttf"
|
||||
S="${WORKDIR}"
|
||||
FONT_S="${S}"
|
||||
|
||||
src_unpack() {
|
||||
true
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
cp "${DISTDIR}/${P}.ttf" "${WORKDIR}/JoyPixels.ttf" || die
|
||||
default
|
||||
}
|
@ -1,27 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit font
|
||||
|
||||
DESCRIPTION="Emoji as a Service (formerly EmojiOne)"
|
||||
HOMEPAGE="https://www.joypixels.com"
|
||||
SRC_URI="https://cdn.joypixels.com/arch-linux/font/${PV}/joypixels-android.ttf -> ${P}.ttf"
|
||||
|
||||
LICENSE="JoyPixels"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
|
||||
FONT_SUFFIX="ttf"
|
||||
S="${WORKDIR}"
|
||||
FONT_S="${S}"
|
||||
|
||||
src_unpack() {
|
||||
true
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
cp "${DISTDIR}/${P}.ttf" "${WORKDIR}/JoyPixels.ttf" || die
|
||||
default
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>y0rune@aol.com</email>
|
||||
<name>Marcin Woźniak</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
@ -1 +0,0 @@
|
||||
DIST spleen-1.7.0.tar.gz 68041 BLAKE2B 3946995816260ad3737c3f22a4fd27b4a67dc73f25f0387b3e38ec2946989a9c68a10de44069abfa6603554e6c3fb323f36bd87e2766d770e4cb31ea346b34d5 SHA512 844cd18b8ec906fa3c6fb52837b3df73f36004c49cf4b5c9a049d7754e46d23969080ac81aa41555d6cfef367cbe098d1fd0a603d2d8a8f8fcc0e466cd4c6be9
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<remote-id type="github">fcambus/spleen</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,27 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit font font-ebdftopcf
|
||||
|
||||
DESCRIPTION="Monospaced bitmap font"
|
||||
HOMEPAGE="https://www.cambus.net/spleen-monospaced-bitmap-fonts/"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/fcambus/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/fcambus/${PN}/archive/1.7.0.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
|
||||
DOCS=(
|
||||
AUTHORS
|
||||
ChangeLog
|
||||
README.md
|
||||
)
|
@ -1,27 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit font font-ebdftopcf
|
||||
|
||||
DESCRIPTION="Monospaced bitmap font"
|
||||
HOMEPAGE="https://www.cambus.net/spleen-monospaced-bitmap-fonts/"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/fcambus/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/fcambus/${PN}/archive/1.7.0.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
|
||||
DOCS=(
|
||||
AUTHORS
|
||||
ChangeLog
|
||||
README.md
|
||||
)
|
@ -1,3 +1,2 @@
|
||||
DIST firefox-115esr-patches-08.tar.xz 15912 BLAKE2B 3f94deb17920672ad2184e813bd38e390ecaa50bfc6e00973db717bc56a5adb4f096224cc366da525db25aaa3d198d57716bcb765ddc906783532864e23dd8d4 SHA512 4474fbed14b2c4fac03d82f4b37849a69dbdd61fc15f01cefa373eb8a64a692f5a584247acdf7c349ab6965225c3cd47be3fc4523f93db5299680e2a22e94d94
|
||||
DIST icecat-115.5.0-gnu1.tar.bz2 682679417 BLAKE2B c87175eebea719a154feec019b0548b8eea0cab440989ad6c3a18a2146fd15be6a2b100caebc3736fc8cf4e98be8811276ae3daf0379cb94607b4d791e627b70 SHA512 4eb5b216da438c0fda589a76b7a2222f02136317c6b104eab240598cfd274b9f2ffab73da016bb3562435bf0cc44b6a1a15a5ef5bf61e0faafd24bff264d42b4
|
||||
DIST icecat-115.6.0-gnu1.tar.bz2 682569214 BLAKE2B adb5af09d2aa5bdd246c198cbe2b27ac1a540abfd1a9ff2df7ec07f8209d2f14987bcab7deb56618ff1c45a922fef1442261f6aeda4ad414c367e68bae5fedf8 SHA512 2eeb7f751d63497a400a106df04a556e3036b8a0463ae8292dce574119b39bc39515bb8b74c39eb515c36bb83049f03b811114af6c0b846f52591a060f5362d6
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user