mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
Add qtpkg 1.0, a Qt based package removal tool.
PR: 24573 Submitted by: Trenton Schulz <twschulz@cord.edu>
This commit is contained in:
parent
54e0d576e0
commit
7cacb2c79a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=37499
21
ports-mgmt/qtpkg/Makefile
Normal file
21
ports-mgmt/qtpkg/Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
# New ports collection makefile for: qtpkg
|
||||
# Date created: Wed Jan 3 2001
|
||||
# Whom: Trenton Schulz <twschulz@cord.edu>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= qtpkg
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://gauss.cord.edu/homepages/twschulz/demo/
|
||||
DISTNAME= qtpkg
|
||||
|
||||
MAINTAINER= twschulz@gloria.cord.edu
|
||||
|
||||
USE_QT2= yes
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/qtpkg ${PREFIX}/sbin
|
||||
|
||||
.include <bsd.port.mk>
|
1
ports-mgmt/qtpkg/distinfo
Normal file
1
ports-mgmt/qtpkg/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (qtpkg.tar.gz) = 0910416a0c23240e3f71d77f825618da
|
25
ports-mgmt/qtpkg/files/patch-Makefile
Normal file
25
ports-mgmt/qtpkg/files/patch-Makefile
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- Makefile 2001/01/23 16:32:54 1.1
|
||||
+++ Makefile 2001/01/23 16:36:12
|
||||
@@ -9,13 +9,13 @@
|
||||
|
||||
CC = cc
|
||||
CXX = c++
|
||||
-CFLAGS = -pipe -Wall -W -O2 -DNO_DEBUG
|
||||
-CXXFLAGS = -pipe -Wall -W -O2 -DNO_DEBUG
|
||||
-INCPATH = -I/usr/local/include -I/usr/X11R6/include/qt2
|
||||
+CFLAGS += -pipe -Wall -W -DNO_DEBUG
|
||||
+CXXFLAGS += -pipe -Wall -W -DNO_DEBUG
|
||||
+INCPATH = -I$(LOCALBASE)/include -I$(X11BASE)/include/qt2
|
||||
LINK = c++
|
||||
-LIBS = $(SUBLIBS) -L/usr/local/lib -L/usr/X11R6/lib -lqt2 -lXext -lX11 -lm
|
||||
-MOC = /usr/X11R6/bin/moc2
|
||||
-UIC = /usr/X11R6/bin/uic
|
||||
+LIBS = $(SUBLIBS) -L$(LOCALBASE)/lib -L$(X11BASE)/lib -lqt2 -lXext -lX11 -lm -pthread
|
||||
+MOC = $(X11BASE)/bin/moc2
|
||||
+UIC = $(X11BASE)/bin/uic
|
||||
|
||||
TAR = tar -cf
|
||||
GZIP = gzip -9f
|
1
ports-mgmt/qtpkg/pkg-comment
Normal file
1
ports-mgmt/qtpkg/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
A Qt based package removal tool
|
4
ports-mgmt/qtpkg/pkg-descr
Normal file
4
ports-mgmt/qtpkg/pkg-descr
Normal file
@ -0,0 +1,4 @@
|
||||
qtpkg simplifies the removal of packages by simulating the add/remove
|
||||
programs dialog as seen in Windows. Handy when you can't remember the
|
||||
correct version number. It also allows you to read the description of the
|
||||
package and its packing list.
|
1
ports-mgmt/qtpkg/pkg-plist
Normal file
1
ports-mgmt/qtpkg/pkg-plist
Normal file
@ -0,0 +1 @@
|
||||
sbin/qtpkg
|
@ -87,6 +87,7 @@
|
||||
SUBDIR += pslist
|
||||
SUBDIR += psmisc
|
||||
SUBDIR += pwgen
|
||||
SUBDIR += qtpkg
|
||||
SUBDIR += rdate
|
||||
SUBDIR += rotate
|
||||
SUBDIR += rtty
|
||||
|
21
sysutils/qtpkg/Makefile
Normal file
21
sysutils/qtpkg/Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
# New ports collection makefile for: qtpkg
|
||||
# Date created: Wed Jan 3 2001
|
||||
# Whom: Trenton Schulz <twschulz@cord.edu>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= qtpkg
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://gauss.cord.edu/homepages/twschulz/demo/
|
||||
DISTNAME= qtpkg
|
||||
|
||||
MAINTAINER= twschulz@gloria.cord.edu
|
||||
|
||||
USE_QT2= yes
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/qtpkg ${PREFIX}/sbin
|
||||
|
||||
.include <bsd.port.mk>
|
1
sysutils/qtpkg/distinfo
Normal file
1
sysutils/qtpkg/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (qtpkg.tar.gz) = 0910416a0c23240e3f71d77f825618da
|
25
sysutils/qtpkg/files/patch-Makefile
Normal file
25
sysutils/qtpkg/files/patch-Makefile
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- Makefile 2001/01/23 16:32:54 1.1
|
||||
+++ Makefile 2001/01/23 16:36:12
|
||||
@@ -9,13 +9,13 @@
|
||||
|
||||
CC = cc
|
||||
CXX = c++
|
||||
-CFLAGS = -pipe -Wall -W -O2 -DNO_DEBUG
|
||||
-CXXFLAGS = -pipe -Wall -W -O2 -DNO_DEBUG
|
||||
-INCPATH = -I/usr/local/include -I/usr/X11R6/include/qt2
|
||||
+CFLAGS += -pipe -Wall -W -DNO_DEBUG
|
||||
+CXXFLAGS += -pipe -Wall -W -DNO_DEBUG
|
||||
+INCPATH = -I$(LOCALBASE)/include -I$(X11BASE)/include/qt2
|
||||
LINK = c++
|
||||
-LIBS = $(SUBLIBS) -L/usr/local/lib -L/usr/X11R6/lib -lqt2 -lXext -lX11 -lm
|
||||
-MOC = /usr/X11R6/bin/moc2
|
||||
-UIC = /usr/X11R6/bin/uic
|
||||
+LIBS = $(SUBLIBS) -L$(LOCALBASE)/lib -L$(X11BASE)/lib -lqt2 -lXext -lX11 -lm -pthread
|
||||
+MOC = $(X11BASE)/bin/moc2
|
||||
+UIC = $(X11BASE)/bin/uic
|
||||
|
||||
TAR = tar -cf
|
||||
GZIP = gzip -9f
|
1
sysutils/qtpkg/pkg-comment
Normal file
1
sysutils/qtpkg/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
A Qt based package removal tool
|
4
sysutils/qtpkg/pkg-descr
Normal file
4
sysutils/qtpkg/pkg-descr
Normal file
@ -0,0 +1,4 @@
|
||||
qtpkg simplifies the removal of packages by simulating the add/remove
|
||||
programs dialog as seen in Windows. Handy when you can't remember the
|
||||
correct version number. It also allows you to read the description of the
|
||||
package and its packing list.
|
1
sysutils/qtpkg/pkg-plist
Normal file
1
sysutils/qtpkg/pkg-plist
Normal file
@ -0,0 +1 @@
|
||||
sbin/qtpkg
|
Loading…
Reference in New Issue
Block a user