View | Details | Raw Unified | Return to bug 281522 | Differences between
and this patch

Collapse All | Expand All

(-)b/sysutils/Makefile (+1 lines)
Lines 9-14 Link Here
9
    SUBDIR += R-cran-processx
9
    SUBDIR += R-cran-processx
10
    SUBDIR += R-cran-ps
10
    SUBDIR += R-cran-ps
11
    SUBDIR += R-cran-xopen
11
    SUBDIR += R-cran-xopen
12
    SUBDIR += RyzenAdj
12
    SUBDIR += UEFITool
13
    SUBDIR += UEFITool
13
    SUBDIR += abduco
14
    SUBDIR += abduco
14
    SUBDIR += abgx360
15
    SUBDIR += abgx360
(-)b/sysutils/RyzenAdj/Makefile (+42 lines)
Added Link Here
1
PORTNAME=	RyzenAdj
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	0.16.0
4
CATEGORIES=	sysutils
5
6
MAINTAINER=	vladislav.movchan@gmail.com
7
COMMENT=	Power management tool for Ryzen mobile and embedded CPUs
8
WWW=		https://github.com/FlyGoat/RyzenAdj
9
10
LICENSE=	LGPL3
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
ONLY_FOR_ARCHS=		amd64 i386
14
ONLY_FOR_ARCHS_REASON=	specific to Ryzen CPUs
15
16
LIB_DEPENDS=	libpci.so:devel/libpci
17
18
USES=		cmake localbase:ldflags
19
20
USE_GITHUB=	yes
21
GH_ACCOUNT=	FlyGoat
22
23
USE_LDCONFIG=	yes
24
25
OPTIONS_DEFINE=	EXAMPLES
26
27
PLIST_FILES=	bin/ryzenadj \
28
		lib/libryzenadj.so
29
30
PORTEXAMPLES=	pmtable-example.py \
31
		readjust.py
32
33
post-install:
34
	${INSTALL_LIB} ${BUILD_WRKSRC}/libryzenadj.so \
35
		${STAGEDIR}${PREFIX}/lib/
36
37
post-install-EXAMPLES-on:
38
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
39
	${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/examples/|} \
40
		${STAGEDIR}${EXAMPLESDIR}/
41
42
.include <bsd.port.mk>
(-)b/sysutils/RyzenAdj/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1731520448
2
SHA256 (FlyGoat-RyzenAdj-v0.16.0_GH0.tar.gz) = 7bef7dbde006afbe316091d8da8c8c551d5d7d43185d9e62281671959b7a3ca2
3
SIZE (FlyGoat-RyzenAdj-v0.16.0_GH0.tar.gz) = 126451
(-)b/sysutils/RyzenAdj/pkg-descr (-1 / +12 lines)
Added Link Here
0
- 
1
RyzenAdj is a tool to view and adjust power management settings for some of
2
Ryzen mobile and embedded CPUs.
3
4
One of the use cases is to "trade" CPU performance for lower temperature:
5
You can set lower-than-default CPU power limit and make your computer
6
(slightly) less performant, but make it (significantly) cooler and more quiet
7
under load. It is not uncommon to get less than 10% performance drop after
8
lowering CPU TDP by 30%.
9
10
Another use case is for CPU overclocking hobby.
11
12
Use at your own risk.

Return to bug 281522