diff options
author | haarp <main.haarp@gmail.com> | 2018-08-28 11:06:46 +0200 |
---|---|---|
committer | haarp <main.haarp@gmail.com> | 2018-08-28 11:06:46 +0200 |
commit | eda2379d19ba4f8f2aeedacf85a38ab7ea6544e7 (patch) | |
tree | 61e03d4359d867cc32e5596e09e0a2ffc5c05bec | |
parent | mtview: Don't install under /usr/local (diff) | |
download | haarp-eda2379d19ba4f8f2aeedacf85a38ab7ea6544e7.tar.gz haarp-eda2379d19ba4f8f2aeedacf85a38ab7ea6544e7.tar.bz2 haarp-eda2379d19ba4f8f2aeedacf85a38ab7ea6544e7.zip |
Add cvt12
-rw-r--r-- | x11-misc/cvt12/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/cvt12/cvt12-9999.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/x11-misc/cvt12/Manifest b/x11-misc/cvt12/Manifest new file mode 100644 index 0000000..116f046 --- /dev/null +++ b/x11-misc/cvt12/Manifest @@ -0,0 +1 @@ +EBUILD cvt12-9999.ebuild 662 BLAKE2B 98fac62d39a0bf6325eb789f0489778a5a42b5cc3a9d258c371fa172ce5c3abb41f5a883c0c61f3e45a1f9d42e4cb0da25160951a6fc8bdab58cb2aa86cd25ac SHA512 039773ab2a848af477f61af94934ae24b4b35cc35393ca4c5659737fe867d6fddc5410eff9a353f0268704e75a5aa3df82eddb837709628081e49a9a9a0ad72a diff --git a/x11-misc/cvt12/cvt12-9999.ebuild b/x11-misc/cvt12/cvt12-9999.ebuild new file mode 100644 index 0000000..1de4969 --- /dev/null +++ b/x11-misc/cvt12/cvt12-9999.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit git-r3 toolchain-funcs + +DESCRIPTION="CVT (Coordinated Video Timings) modeline calculator with CVT v1.2 timings" +HOMEPAGE="https://github.com/kevinlekiller/cvt_modeline_calculator_12" +EGIT_REPO_URI="https://github.com/kevinlekiller/cvt_modeline_calculator_12.git" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND=${RDEPEND} + +src_compile() { + echo "$(tc-getCC) ${LDFLAGS} ${CFLAGS} -Wall -o cvt12 cvt12.c -lm" + $(tc-getCC) ${LDFLAGS} ${CFLAGS} -Wall -o cvt12 cvt12.c -lm || die "compile failed" +} + +src_install() { + dobin cvt12 +} |