Compare commits
No commits in common. "400afc81a428fc96bedc11b482c1bc5e534cbdcc" and "8b0fe3a3b301bb06581818aa1f21606aac1919e4" have entirely different histories.
400afc81a4
...
8b0fe3a3b3
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
md5-cache
|
|
@ -1,2 +0,0 @@
|
|||||||
DIST v1.0.tar.gz 115165 BLAKE2B 2d04ac88f278f8f5e7adb4274b5fe815ddb7b75e792f10884b2498e4997d174dc6806236701bc321824e84058df14f31551c4bd42abea1e1093cf8b469b99779 SHA512 955976f0b11cb338c9c5c0b9e1b6d7deea77ecb074342a9ef2bd5d4da29a292fc7e1cc76eb325f9be6f43a87814493d0ce23ea27ccdc32e421d3e05f9ee28537
|
|
||||||
EBUILD ebclient-1.0.ebuild 774 BLAKE2B b25e0489067712d5da7a7cc0ccc2e1ff4562c2a0ef17d988081f83436c34f3e0ba55f392287ca34b3cb549e0a6182b37324724b2f150dc603e096d4e1e326782 SHA512 40b808d0f5a6576be398f3022409b6317b5e3cc1dce9bf8a5cf7f326802a61f0855276badf4eed5af62c3f3a0b1e0c4338241fe919fcc95f9f248925ddc024b9
|
|
@ -1,28 +0,0 @@
|
|||||||
# Copyright 1999-2025 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=8
|
|
||||||
|
|
||||||
DESCRIPTION="Simple program for reading EPWING dictionaries"
|
|
||||||
HOMEPAGE="https://github.com/sagan/ebclient"
|
|
||||||
SRC_URI="https://github.com/ktkovachev/ebclient/archive/refs/tags/v1.0.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="Apache-2.0"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~x86"
|
|
||||||
IUSE="+static-libs"
|
|
||||||
|
|
||||||
DEPEND="dev-libs/ebu dev-libs/mxml[static-libs] sys-libs/zlib[static-libs]"
|
|
||||||
RDEPEND="${DEPEND}"
|
|
||||||
BDEPEND="dev-build/libtool"
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
cd src
|
|
||||||
sed -e "s/mxml/mxml4/" Makefile -i || die "unable to patch mxml library path!"
|
|
||||||
emake
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
mkdir -p "${D}"/usr/bin/ || die "unable to create install directory!"
|
|
||||||
install src/ebclient "${D}"/usr/bin/ebclient || die "couldn't install!"
|
|
||||||
}
|
|
@ -1,2 +0,0 @@
|
|||||||
DIST v4.5.tar.gz 2630073 BLAKE2B ade288fd8c4af47d58e05a2394b2073c08d3e30facf303bf68380b4f079f372048fa0820de147890f649e84fe67740113229ed6c4a5749171a3906b0aa2a9954 SHA512 f18f7c447b4658b5ed2bf6aa90c349b41759bc57feca7d1804aadf10cfd1ba910d1eb0ec518901a5f0dfc58ec3ce6012efe2d2b87933d0f178893682f5813dd8
|
|
||||||
EBUILD ebu-4.5.ebuild 847 BLAKE2B 4961d5c9ab76480cd4467719c5d157ddd5d183ec503376932bef284981ff1fb2155ff2bf0b8011f8828b479bb612f312be52c6718ddc5b6eefd353c3292c8d66 SHA512 1a2ae523b01391b45818ea424bcb887f4f94155e001f16b6809b620695323b449ac0c7a7eb8e6dddf0ee5dd8b26d434a414e96d82bcfc58125511029171113fd
|
|
@ -1,42 +0,0 @@
|
|||||||
# Copyright 1999-2025 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=8
|
|
||||||
|
|
||||||
DESCRIPTION="Library for UTF-8-enabled reading of EPWING dictionary files"
|
|
||||||
HOMEPAGE="http://green.ribbon.to/~ikazuhiro/dic/ebu.html"
|
|
||||||
SRC_URI="https://github.com/ktkovachev/ebu/archive/refs/tags/v4.5.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="BSD"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~x86"
|
|
||||||
IUSE="+static-libs"
|
|
||||||
|
|
||||||
DEPEND=""
|
|
||||||
RDEPEND="${DEPEND}"
|
|
||||||
BDEPEND="dev-build/libtool"
|
|
||||||
|
|
||||||
src_configure() {
|
|
||||||
#econf --enable-static
|
|
||||||
autoconf
|
|
||||||
#econf \
|
|
||||||
# $(use_enable static-libs)
|
|
||||||
|
|
||||||
./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc
|
|
||||||
}
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
emake
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
#emake install
|
|
||||||
emake DESTDIR="${D}" install
|
|
||||||
# emake \
|
|
||||||
# prefix="${D}"/usr \
|
|
||||||
# mandir="${D}"/usr/share/man \
|
|
||||||
# infodir="${D}"/usr/share/info \
|
|
||||||
# libdir="${D}"/usr/$(get_libdir) \
|
|
||||||
# install
|
|
||||||
|
|
||||||
}
|
|
@ -1,2 +0,0 @@
|
|||||||
masters = gentoo
|
|
||||||
auto-sync = false
|
|
@ -1 +0,0 @@
|
|||||||
ebweb
|
|
Loading…
Reference in New Issue
Block a user